Skip to content

Commit

Permalink
fix tests. this might need fixed when we change to ANC to become an l…
Browse files Browse the repository at this point in the history
…evel of its own
  • Loading branch information
nicky.hochmuth committed Sep 24, 2024
1 parent a12b6b0 commit 5f8e6f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions stixpy/net/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ def test_local_client(clientlocal, time_range, level, dtype, nfiles):
@pytest.mark.remote_data
def test_search_date(client):
res = client.search(a.Time("2020-05-01T00:00", "2020-05-01T23:59"), a.Instrument.stix)
assert len(res) == 38
assert len(res) == 37
# this might need fixed when we change to ANC to become an level of its own


@pytest.mark.remote_data
Expand Down Expand Up @@ -120,7 +121,8 @@ def test_search_date_product_sci():
@pytest.mark.remote_data
def test_fido():
res = Fido.search(a.Time("2020-11-17T00:00", "2020-11-17T23:59"), a.Instrument.stix)
assert len(res["stix"]) == 51
assert len(res["stix"]) == 50
# this might need fixed when we change to ANC to become an level of its own

res_ql = Fido.search(a.Time("2020-11-17T00:00", "2020-11-17T23:59"), a.Instrument.stix, a.stix.DataType.ql)
assert len(res_ql["stix"]) == 6
Expand Down

0 comments on commit 5f8e6f9

Please sign in to comment.