fix test that includes pointer values in output

This commit is contained in:
K. Lange 2021-01-06 19:07:22 +09:00
parent 3898e5e51c
commit 7073505c6b
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
def __main__(): def __main__():
let module = object() let module = object()
def aFunction(withArgs): def aFunction(withArgs):
print("I have a module:", module) print("I have a module:", str(module)[:20])
return withArgs return withArgs
module.aFunction = aFunction module.aFunction = aFunction
return module return module

View File

@ -1 +1 @@
I have a module: <instance of object at 0x55fd18dd2ff0> I have a module: <instance of object