diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-09-26 10:08:03 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-09-26 10:08:03 -0700 |
commit | 9486d72bcdeaf39156137b24025911407d8a72f8 (patch) | |
tree | a509ad180abadf483a72516f94bafba51a0e2688 | |
parent | 860ad99d5ac781d1277c0c4e90735e5e3dadd4d7 (diff) | |
download | attobuild-9486d72bcdeaf39156137b24025911407d8a72f8.tar.gz attobuild-9486d72bcdeaf39156137b24025911407d8a72f8.tar.bz2 attobuild-9486d72bcdeaf39156137b24025911407d8a72f8.tar.xz attobuild-9486d72bcdeaf39156137b24025911407d8a72f8.zip |
Fix unit test for that last commit
-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', }) |