Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
PythonFZ committed Feb 1, 2025
1 parent b82781d commit cc8312a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_access_option_in_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ def test_connect_nodes_in_grp(proj_path):
a = zntrack.examples.ParamsToOuts(params=10)
assert a.name == "A_B_ParamsToOuts"
b = zntrack.examples.ParamsToOuts(params=20, name=f"con_{a.name}")
assert b.name == "con_A_B_ParamsToOuts"
assert b.name == "A_B_con_A_B_ParamsToOuts"

proj.repro()

assert a.name == "A_B_ParamsToOuts"
assert b.name == "con_A_B_ParamsToOuts"
assert b.name == "A_B_con_A_B_ParamsToOuts"


# def test_path_as_name(proj_path):
Expand Down

0 comments on commit cc8312a

Please sign in to comment.