fix test that includes pointer values in output
This commit is contained in:
parent
3898e5e51c
commit
7073505c6b
@ -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
|
||||||
|
@ -1 +1 @@
|
|||||||
I have a module: <instance of object at 0x55fd18dd2ff0>
|
I have a module: <instance of object
|
||||||
|
Loading…
Reference in New Issue
Block a user