From 1b0f6647354cb0fa10aead2f6b1c1aedcf184c9c Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Wed, 18 May 2016 22:24:39 +0200 Subject: [PATCH] trim text --- autocmake/parse_rst.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autocmake/parse_rst.py b/autocmake/parse_rst.py index 70a2151..cbcd1ee 100644 --- a/autocmake/parse_rst.py +++ b/autocmake/parse_rst.py @@ -126,8 +126,7 @@ def test_parse_cmake_module_override(): enable_language(CXX)''' - d = {'minor': 4} - parsed_config = parse_cmake_module(s, d) + parsed_config = parse_cmake_module(s, {'minor': 4}) assert parsed_config['a'] == ['v1'] assert parsed_config['b'] == ['v4'] assert parsed_config['c'] == ['v3']