Skip to content

Commit 7654acc

Browse files
committed
[LIB-898] correct tests;
1 parent e2418a5 commit 7654acc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration_test_custom_socket.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_creating_raw_data(self):
5151
"type": "class",
5252
"schema": [
5353
{"name": "test_class", "type": "string"},
54-
{"name": "test_class", "type": "int"},
54+
{"name": "test_class", "type": "integer"},
5555
]
5656
}
5757
]
@@ -150,7 +150,7 @@ def _define_dependencies_new_class(cls, suffix, custom_socket):
150150
name="test_class_{}".format(suffix),
151151
schema=[
152152
{"name": "testA", "type": "string"},
153-
{"name": "testB", "type": "int"},
153+
{"name": "testB", "type": "integer"},
154154
]
155155
)
156156
)
@@ -163,7 +163,7 @@ def _define_dependencies_existing_class(cls, suffix, custom_socket):
163163
name="test_class_{}".format(suffix),
164164
schema=[
165165
{"name": "testA", "type": "string"},
166-
{"name": "testB", "type": "int"},
166+
{"name": "testB", "type": "integer"},
167167
]
168168
)
169169
klass.save()

0 commit comments

Comments
 (0)