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 /attoconf/tests | |
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
Diffstat (limited to 'attoconf/tests')
-rw-r--r-- | attoconf/tests/test_core.py | 8 |
1 files changed, 4 insertions, 4 deletions
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', }) |