Skip to content

Commit

Permalink
Edit search message.
Browse files Browse the repository at this point in the history
mkelley committed Dec 9, 2024
1 parent 8dfa46a commit 5309340
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sbsearch/sbsearch.py
Original file line number Diff line number Diff line change
@@ -910,7 +910,7 @@ def find_observations_intersecting_line_at_time(
coords: SkyCoord = SkyCoord(_ra, _dec, unit="rad")
arc_length: float = np.sum(coords[:-1].separation(coords[1:])).deg
self.search_logger.info(
"Searching coordinates with length %.1f deg and %.1f days",
"Searching %.1f deg over %.1f days",
arc_length,
np.ptp(mjd),
)
2 changes: 1 addition & 1 deletion sbsearch/test/test_sbsearch.py
Original file line number Diff line number Diff line change
@@ -484,7 +484,7 @@ def test_find_observations_intersecting_line_at_time(
(
"SBSearch (search)",
20,
"Searching coordinates with length 0.9 deg and 0.2 days",
"Searching 0.9 deg over 0.2 days",
),
("SBSearch (search)", 20, "2 observations found"),
]

0 comments on commit 5309340

Please sign in to comment.