diff options
author | Brett Cannon <brett@python.org> | 2016-01-22 15:26:56 -0800 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-01-22 15:26:56 -0800 |
commit | b0db3718d44d4ef8aa257a166299bc35f0e08b87 (patch) | |
tree | 75f3c1975961b8238c7e73af15ab0b33b9b963ff | |
parent | 849113af6ba96c36ffaaa9896c9a337eb3253b89 (diff) | |
download | cpython-git-b0db3718d44d4ef8aa257a166299bc35f0e08b87.tar.gz |
whitespace cleanup
-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 ddeeacafab..7f64548748 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>'} |