Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yuichiroaoki committed Oct 22, 2023
1 parent a88515d commit 76b000e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cnceye"
version = "0.4.0"
version = "0.4.1"
description = "CMM python library"
license = "MIT"
authors = ["yuichiroaoki <45054071+yuichiroaoki@users.noreply.github.com>"]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_find.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def copy_sqlite_db_to_mysql():
def test_find_edges():
copy_sqlite_db_to_mysql()
measured_edges = find.find_edges()
assert len(measured_edges) == 36
assert len(measured_edges) > 32


def test_find_edge():
Expand All @@ -41,7 +41,7 @@ def test_find_edge_from_sqlite():
db_path = "tests/fixtures/db/listener.db"
measured_edges = find.find_edges_from_sqlite(db_path, 100.0)
print(measured_edges)
assert len(measured_edges) == 36
assert len(measured_edges) > 32


def test_add_measured_edge_coord():
Expand Down

0 comments on commit 76b000e

Please sign in to comment.