Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
taufeeque9 committed Apr 25, 2024
1 parent 3c2cf13 commit 9c6a5cc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions envpool/sokoban/sokoban_py_envpool_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,12 +268,15 @@ def test_astar_log(tmp_path) -> None:
subprocess.run(
[
"/root/go/bin/bazel", f"--output_base={str(tmp_path)}", "run",
"//envpool/sokoban:astar_log", "--",
level_file_name, str(log_file_name), "1"
"//envpool/sokoban:astar_log", "--", level_file_name,
str(log_file_name), "1"
],
check=True,
cwd="/app/envpool",
env={"HOME": "/root", "PATH": "/opt/conda/bin:/usr/bin"},
env={
"HOME": "/root",
"PATH": "/opt/conda/bin:/usr/bin"
},
)
log = log_file_name.read_text()
assert f"0,{SOLVE_LEVEL_ZERO},21,1380" == log.split("\n")[1]
Expand Down

0 comments on commit 9c6a5cc

Please sign in to comment.