Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Missed an asterisk
  • Loading branch information
abessen committed Oct 28, 2016
commit 3844d19938c6f9a2e20c5235408e931afab3a243
4 changes: 2 additions & 2 deletions src/tests/test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def testModuleInterface(self):
# the filename can be any module from the System namespace
# (eg System.Data.dll or System.dll, but also mscorlib.dll)
system_file = System.__file__
self.assertTrue(fnmatch(system_file, "*System*.dll") or fnmatch(system_file, "mscorlib.dll"),
"unexpected System.__file__" + system_file)
self.assertTrue(fnmatch(system_file, "*System*.dll") or fnmatch(system_file, "*mscorlib.dll"),
"unexpected System.__file__: " + system_file)
self.assertTrue(System.__doc__.startswith("Namespace containing types from the following assemblies:"))
self.assertTrue(self.isCLRClass(System.String))
self.assertTrue(self.isCLRClass(System.Int32))
Expand Down