Skip to content

Commit 928f7cc

Browse files
committed
Fix in LLAPI test module loading
1 parent d3efe52 commit 928f7cc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/flow/tests_llapi.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ def wrapper(env, *args, **kwargs):
1616
if b'RAI_llapi' in [module[1] for module in modules]:
1717
return f(env, *args, **kwargs)
1818
try:
19-
# ret = con.execute_command('MODULE', 'LOAD', TESTMOD_PATH)
20-
ret = con.execute_command('MODULE', 'LOAD', "/home/alon/CLionProjects/RedisAI/bin/linux-x64-debug/src/tests/module/testmod.so")
19+
ret = con.execute_command('MODULE', 'LOAD', TESTMOD_PATH)
2120
env.assertEqual(ret, b'OK')
2221
except Exception as e:
2322
env.assertFalse(True)

0 commit comments

Comments
 (0)