diff options
-rw-r--r-- | attoconf/_version.py | 2 | ||||
-rw-r--r-- | attoconf/tests/test_core.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/attoconf/_version.py b/attoconf/_version.py index dd1465e..75812fd 100644 --- a/attoconf/_version.py +++ b/attoconf/_version.py @@ -11,7 +11,7 @@ minor = 8 # Incremented if there is a bugfix release. # Might not be contiguous. -patch = 1 +patch = 2 # Reserved for distributors and forks. # Contains arbitrary text, but no parentheses or newlines. diff --git a/attoconf/tests/test_core.py b/attoconf/tests/test_core.py index fbbe622..f394238 100644 --- a/attoconf/tests/test_core.py +++ b/attoconf/tests/test_core.py @@ -129,8 +129,8 @@ General: }) self.assertEqual(build.vars, { - 'FOO': ('B', 'command-line'), - 'BAR': (1, 'command-line'), - 'QUX': (None, 'default'), - 'VAR': ('value', 'environment'), + 'FOO': 'B', + 'BAR': 1, + 'QUX': None, + 'VAR': 'value', }) |