Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
roywilly committed Dec 14, 2023
1 parent 64adc62 commit 2a1d963
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/test_uploads_from_komodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def test_case_tables(explorer: Explorer):
seed()
random_index = randint(0, len(case.tables) - 1)
arrow = case.tables[random_index].to_arrow()
arrow.validate() # ?
arrow.validate()


def test_case_polygons(explorer: Explorer):
Expand All @@ -140,9 +140,8 @@ def test_case_polygons(explorer: Explorer):
# No need to test every blob element every time
seed()
random_index = randint(0, len(case.polygons) - 1)
obj = case.polygons[random_index].to_pandas()
# obj.validate() # ?

case.polygons[random_index].to_pandas()


def test_case_dictionaries(explorer: Explorer):
"""Test dictionaries from the latest case uploaded from komodo-releases"""
Expand Down Expand Up @@ -172,7 +171,6 @@ def test_case_dictionaries(explorer: Explorer):
random_index = randint(0, len(case.dictionaries) - 1)
obj = case.dictionaries[random_index]
obj._blob
# obj.validate() # ?


@pytest.mark.skipif(
Expand Down

0 comments on commit 2a1d963

Please sign in to comment.