Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix python runtime tests #1983

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
9 changes: 2 additions & 7 deletions test/runtime/runtime-python/test/main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import unittest
import sys
sys.path.insert(1, '../src/main/')
from Address import Address
from NestedObject import NestedObject
from src.main.Address import Address
from src.main.NestedObject import NestedObject
import json

class TestAddress(unittest.TestCase):
Expand All @@ -18,8 +18,6 @@ def setUpClass(cls) :
'enumTest' : 'TEST',
'houseType' : 'DETACHED',
'roofType' : 'TILE',


}))


Expand All @@ -31,8 +29,5 @@ def test_should_not_contain_additional_properties_when_serialized(self):
json_str = self.address.serializeToJson()
self.assertNotIn('additionalProperties', json_str)




if __name__ == '__main__':
unittest.main()
Loading