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
Next Next commit
[LIB-898] correct tests;
  • Loading branch information
opalczynski committed Sep 22, 2016
commit 7654acc14c36ddfb739eac8240b84eb861356e02
6 changes: 3 additions & 3 deletions tests/integration_test_custom_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_creating_raw_data(self):
"type": "class",
"schema": [
{"name": "test_class", "type": "string"},
{"name": "test_class", "type": "int"},
{"name": "test_class", "type": "integer"},
]
}
]
Expand Down Expand Up @@ -150,7 +150,7 @@ def _define_dependencies_new_class(cls, suffix, custom_socket):
name="test_class_{}".format(suffix),
schema=[
{"name": "testA", "type": "string"},
{"name": "testB", "type": "int"},
{"name": "testB", "type": "integer"},
]
)
)
Expand All @@ -163,7 +163,7 @@ def _define_dependencies_existing_class(cls, suffix, custom_socket):
name="test_class_{}".format(suffix),
schema=[
{"name": "testA", "type": "string"},
{"name": "testB", "type": "int"},
{"name": "testB", "type": "integer"},
]
)
klass.save()
Expand Down