Skip to content
Prev Previous commit
Next Next commit
[LIB-898] correct tests;
  • Loading branch information
opalczynski committed Sep 22, 2016
commit 33294e249c5f54f8c35f43fa42895ca4cf506377
2 changes: 1 addition & 1 deletion tests/integration_test_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def tearDownClass(cls):
cls.connection = None

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

obj_list = response['objects']

Expand Down
4 changes: 2 additions & 2 deletions tests/integration_test_custom_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def test_creating_raw_data(self):
"type": "class",
"name": "klass",
"schema": [
{"name": "test_class", "type": "string"},
{"name": "test_class", "type": "integer"},
{"name": "fieldA", "type": "string"},
{"name": "fieldB", "type": "integer"},
]
}
]
Expand Down