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
fixed domain reload test, that tries to call static method from objec…
…t instance
  • Loading branch information
lostmsu committed Dec 11, 2020
commit ca96444017b46c3a638f6f18d07feb7fe48641f1
2 changes: 1 addition & 1 deletion src/embed_tests/TestDomainReload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ from Python.EmbeddingTest.Domain import MyClass
def test_obj_call():
obj = MyClass()
obj.Method()
obj.StaticMethod()
MyClass.StaticMethod()
obj.Property = 1
obj.Field = 10

Expand Down