Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
JukkaL committed Jul 15, 2014
1 parent 88a7b11 commit 107794d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mypy/test/data/check-modules.test
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,11 @@ main, line 1: No module named 'xyz'
main, line 2: Name 'y' is not defined

[case testUnknownModuleRedefinition]
import x
def x(): pass
import xab
def xab(): pass
[out]
main, line 1: No module named 'x'
main, line 1: Name 'x' already defined
main, line 1: No module named 'xab'
main, line 1: Name 'xab' already defined

[case testAccessingUnknownModuleFromOtherModule]
import x
Expand Down

0 comments on commit 107794d

Please sign in to comment.