Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit 142297f

Browse files
committed
Make small clean up
1 parent 2e84ba2 commit 142297f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/testdata/multihead_conn_testdata.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ end
228228

229229
function multihead_conn_testdata.init_spaces()
230230
local ID_FIELD_NUM = 2
231-
local HERO_ID_FIELD_NUM =3
231+
local HERO_ID_FIELD_NUM = 3
232232

233233
box.once('test_space_init_spaces', function()
234234
box.schema.create_space('hero_collection')
@@ -251,15 +251,17 @@ function multihead_conn_testdata.init_spaces()
251251
{ type = 'tree', unique = true, parts = { ID_FIELD_NUM, 'string' }}
252252
)
253253
box.space.credit_account_collection:create_index('credit_hero_id_index',
254-
{ type = 'tree', unique = false, parts = { HERO_ID_FIELD_NUM, 'string' }}
254+
{ type = 'tree', unique = false,
255+
parts = { HERO_ID_FIELD_NUM, 'string' }}
255256
)
256257

257258
box.schema.create_space('dublon_account_collection')
258259
box.space.dublon_account_collection:create_index('dublon_id_index',
259260
{ type = 'tree', unique = true, parts = { ID_FIELD_NUM, 'string' }}
260261
)
261262
box.space.dublon_account_collection:create_index('dublon_hero_id_index',
262-
{ type = 'tree', unique = false, parts = { HERO_ID_FIELD_NUM, 'string' }}
263+
{ type = 'tree', unique = false,
264+
parts = { HERO_ID_FIELD_NUM, 'string' }}
263265
)
264266
end)
265267
end
@@ -346,14 +348,12 @@ function multihead_conn_testdata.run_queries(gql_wrapper)
346348
hero_id
347349
}
348350
}
349-
350351
... on box_array_dublon_account_collection {
351352
dublon_account_collection {
352353
account_id
353354
hero_id
354355
}
355356
}
356-
357357
}
358358
}
359359
}

0 commit comments

Comments
 (0)