fixed relate file path

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2022-04-07 21:51:56 +02:00
parent e297ca5eb4
commit 85f6992b5b

View File

@ -30,8 +30,8 @@ def __read_commands(file_path):
def _load_setup_files():
drop_commands = __read_commands(file_path="drop_db.txt")
init_commands = __read_commands(file_path="init_db.txt")
drop_commands = __read_commands(file_path="planetmint/backend/tarantool/drop_db.txt")
init_commands = __read_commands(file_path="planetmint/backend/tarantool/init_db.txt")
return init_commands, drop_commands