diff options
author | Brett Cannon <brett@python.org> | 2016-01-22 23:26:56 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-01-22 23:26:56 (GMT) |
commit | b0db3718d44d4ef8aa257a166299bc35f0e08b87 (patch) | |
tree | 75f3c1975961b8238c7e73af15ab0b33b9b963ff /Lib | |
parent | 849113af6ba96c36ffaaa9896c9a337eb3253b89 (diff) | |
download | cpython-b0db3718d44d4ef8aa257a166299bc35f0e08b87.zip cpython-b0db3718d44d4ef8aa257a166299bc35f0e08b87.tar.gz cpython-b0db3718d44d4ef8aa257a166299bc35f0e08b87.tar.bz2 |
whitespace cleanup
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_importlib/import_/test___package__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/import_/test___package__.py b/Lib/test/test_importlib/import_/test___package__.py index ddeeaca..7f64548 100644 --- a/Lib/test/test_importlib/import_/test___package__.py +++ b/Lib/test/test_importlib/import_/test___package__.py @@ -76,8 +76,8 @@ class Using__package__: def test_warn_when_package_and_spec_disagree(self): # Raise an ImportWarning if __package__ != __spec__.parent. with self.assertWarns(ImportWarning): - self.import_module({'__package__': 'pkg.fake', - '__spec__': FakeSpec('pkg.fakefake')}) + self.import_module({'__package__': 'pkg.fake', + '__spec__': FakeSpec('pkg.fakefake')}) def test_bad__package__(self): globals = {'__package__': '<not real>'} |