Merge pull request #5636 from asottile/fixup_sysmodules_test

Fix ordering of sys modules snapshot
This commit is contained in:
Anthony Sottile 2019-07-20 12:30:18 -07:00
parent 30de66944d
commit f06ae5297b
1 changed files with 1 additions and 1 deletions

View File

@ -245,8 +245,8 @@ class TestInlineRunModulesCleanup(object):
):
spy_factory = self.spy_factory()
monkeypatch.setattr(pytester, "SysModulesSnapshot", spy_factory)
original = dict(sys.modules)
testdir.syspathinsert()
original = dict(sys.modules)
testdir.makepyfile(import1="# you son of a silly person")
testdir.makepyfile(import2="# my hovercraft is full of eels")
test_mod = testdir.makepyfile(