Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Aug 20, 2024
1 parent fe69bad commit ec361d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_pybmds/tests/test_sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_dll_version(self, ddataset2):
session = pybmds.Session(dataset=ddataset2)
version = session.dll_version()
assert isinstance(version, str)
assert int(version.split(".")[0]) >= 2021 # assume dll in format "YYYY.MM..."
assert int(version.split(".")[0]) >= 24 # assume dll in format "YY.MM..."


class TestSessionPlot:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pybmds/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ def test_citation():

def test_get_version():
version = get_version()
assert int(version.dll.split(".")[0]) >= 2021 # assume dll in format "YYYY.MM..."
assert int(version.dll.split(".")[0]) >= 24 # assume dll in format "YY.MM..."

0 comments on commit ec361d4

Please sign in to comment.