We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e15f7b commit 407370aCopy full SHA for 407370a
tests/suites/test_schema.py
@@ -208,9 +208,9 @@ def test_06_index_cached(self):
208
self.assertEqual(len(index.parts), 1)
209
210
def test_07_schema_version_update(self):
211
- self.assertEqual(len(self.con.select('_space')), 12)
+ _space_len = len(self.con.select('_space'))
212
self.srv.admin("box.schema.create_space('ttt22')")
213
- self.assertEqual(len(self.con.select('_space')), 13)
+ self.assertEqual(len(self.con.select('_space')), _space_len + 1)
214
215
@classmethod
216
def tearDownClass(self):
0 commit comments