Skip to content

Commit f4ca61e

Browse files
committed
Remove test that needed radius > 2 deg.
1 parent 55e893d commit f4ca61e

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/test_fixed_target.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,3 @@ def test_areal_search(test_client: TestClient):
110110
response.raise_for_status()
111111
results = response.json()
112112
assert len(results["data"]) == 0
113-
114-
parameters = {
115-
"ra": "00:00",
116-
"dec": "+0 0",
117-
"sources": ["neat_palomar_tricam"],
118-
"radius": np.hypot(5, 5) / 2 * 60 + 1,
119-
"intersection_type": "AreaContainsImage",
120-
}
121-
response = test_client.get("/fixed", params=parameters)
122-
response.raise_for_status()
123-
results = response.json()
124-
assert len(results["data"]) == 4

0 commit comments

Comments
 (0)