Skip to content

Commit 3ff78f7

Browse files
committed
fixed tests
1 parent e08183e commit 3ff78f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_packager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_read_configfile(self):
1414

1515
settings = SettingsReader(config_file=config_path, author={'name': 'John Brown'})
1616
self.assertEqual(settings['author']['name'], 'John Brown')
17-
self.assertFalse('email' in settings['author'])
17+
self.assertTrue('email' in settings['author'])
1818

1919
package = BasePackager(settings=settings)
2020
self.assertEqual(package.settings['author']['name'], 'John Brown')

0 commit comments

Comments
 (0)