Skip to content

Commit 33294e2

Browse files
committed
[LIB-898] correct tests;
1 parent 1d20ef5 commit 33294e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/integration_test_accounts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def tearDownClass(cls):
3535
cls.connection = None
3636

3737
def check_connection(self, con):
38-
response = con.request('GET', '/v1.1/instances/test_login/classes/')
38+
response = con.request('GET', '/v1.1/instances/{}/classes/'.format(self.INSTANCE_NAME))
3939

4040
obj_list = response['objects']
4141

tests/integration_test_custom_socket.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def test_creating_raw_data(self):
5151
"type": "class",
5252
"name": "klass",
5353
"schema": [
54-
{"name": "test_class", "type": "string"},
55-
{"name": "test_class", "type": "integer"},
54+
{"name": "fieldA", "type": "string"},
55+
{"name": "fieldB", "type": "integer"},
5656
]
5757
}
5858
]

0 commit comments

Comments
 (0)