Skip to content

Commit

Permalink
fix the test that was testing broken behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry committed Jan 18, 2024
1 parent ce7cf3d commit 45e4a31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tests/test_graphdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1970,8 +1970,8 @@ def test_leading_zeroes_ids():
g = Graph()
g.add_node(0, 0)
g.add_node(1, "0")
assert g.node(0).history() == [0]
assert g.nodes.name.collect() == ["0", "0"]
assert g.node(0).history() == [0, 1]
assert g.nodes.name.collect() == ["0"]

# g = Graph()
# g.add_node(0, 1)
Expand Down

1 comment on commit 45e4a31

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Rust Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 45e4a31 Previous: eae2e01 Ratio
large/1k fixed edge updates with varying time and numeric string input 18805800 ns/iter (± 137753) 343239 ns/iter (± 4568) 54.79
large/1k fixed edge updates with varying time and string input 25153484 ns/iter (± 62641) 359925 ns/iter (± 2190) 69.89
large/1k random edge additions with numeric string input 28164177 ns/iter (± 114715) 765432 ns/iter (± 95815) 36.80

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.