That changes some test results intentionally

This commit is contained in:
K. Lange 2021-02-18 08:45:07 +09:00
parent de6a476d01
commit 649b452714
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
0 1 2 0 1 2
0 1 2 0 1 2
ValueError: Wrong number of values to unpack (wanted 2, got 2) ValueError('Wrong number of values to unpack (wanted 2, got 2)')
ValueError: Wrong number of values to unpack (wanted 4, got 3) ValueError('Wrong number of values to unpack (wanted 4, got 3)')

View File

@ -1,6 +1,6 @@
Imported foo.__init__ as foo Imported foo.__init__ as foo
<module 'foo' from ...> <module 'foo' from ...>
AttributeError: 'module' object has no attribute 'bar' AttributeError("'module' object has no attribute 'bar'")
Imported bar.__init__ as foo.bar Imported bar.__init__ as foo.bar
imported baz.krk as foo.bar.baz imported baz.krk as foo.bar.baz
<module 'foo.bar.baz' from ...> <module 'foo.bar.baz' from ...>
@ -14,10 +14,10 @@ This is it!
This is it! This is it!
<module 'foo.bar.baz' from ...> <module 'foo.bar.baz' from ...>
This is it! This is it!
NameError: Undefined variable 'foo'. NameError("Undefined variable 'foo'.")
<module 'foo.bar.baz' from ...> <module 'foo.bar.baz' from ...>
This is it! This is it!
NameError: Undefined variable 'foo'. NameError("Undefined variable 'foo'.")
This is it! This is it!
NameError: Undefined variable 'qux'. NameError("Undefined variable 'qux'.")
NameError: Undefined variable 'foo'. NameError("Undefined variable 'foo'.")