Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
11 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
escapewindow committed Jul 1, 2016
1 parent cb7ec8e commit 2df1e57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configman/tests/test_val_for_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def test_basic_import(self):
self.assertFalse('os' in v)
self.assertTrue('collections' in v)

self.assertTrue('__package__' not in v.keys())
self.assertTrue('__builtins__' not in v.keys())
self.assertTrue('__doc__' in v.keys())
self.assertTrue('__package__' not in list(v.keys()))
self.assertTrue('__builtins__' not in list(v.keys()))
self.assertTrue('__doc__' in list(v.keys()))
self.assertTrue(v.__doc__.startswith('This is a test'))

from collections import Mapping
Expand Down

0 comments on commit 2df1e57

Please sign in to comment.