Skip to content

Commit

Permalink
Change test parameters to avoid warnings for timestep floating point …
Browse files Browse the repository at this point in the history
…difference being large
  • Loading branch information
mkvanhooft committed Dec 12, 2023
1 parent b71173c commit 44acb17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion submodules/netsquid-netbuilder/tests/test_mh.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def test_egp_heralded_single_click(self):

def test_egp_heralded_single_click_yaml(self):
num_nodes = 6
distances = [10.4, 23, 1, 4, 213.3e8, 15]
distances = [10.4, 23, 1, 4, 213.3e4, 15]
sender_names = [f"sender_{i}" for i in range(num_nodes // 2)]
receiver_names = [f"receiver_{i}" for i in range(num_nodes // 2)]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ hubs:
- stack: receiver_0
length: 4
- stack: receiver_1
length: 213.3e8
length: 213.3e4
- stack: receiver_2
length: 15

Expand Down

0 comments on commit 44acb17

Please sign in to comment.