Skip to content

Commit

Permalink
feat: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Jun 20, 2024
1 parent ba44fbf commit 803000b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,10 @@ def test_read_fasta_fa_no_options():
"""Test reading a fasta file."""
session = connect()

# fasta_path = DATA / "test.fa"
# df = session.read_fasta_file(str(fasta_path)).to_polars()
fasta_path = DATA / "test.fa"
df = session.read_fasta_file(str(fasta_path)).to_polars()

# assert len(df) == 2
assert len(df) == 2

fasta_path = DATA / "test.fa.gz"
df = session.read_fasta_file(str(fasta_path)).to_polars()
Expand Down

0 comments on commit 803000b

Please sign in to comment.