Skip to content

Commit bf9c02d

Browse files
committed
Fix import path for NYCInfoHubScraper in test_main.py
1 parent 91f3c76 commit bf9c02d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async def test_main_scraper_flow():
2323
for url in mock_excel_links
2424
}
2525

26-
with patch("src.excel_scraper.NYCInfoHubScraper.scrape_data") as mock_scrape_data, \
26+
with patch("src.excel_scraper.scraper.NYCInfoHubScraper.scrape_data") as mock_scrape_data, \
2727
patch.object(NYCInfoHubScraper, "save_file") as mock_save:
2828

2929
mock_scrape_data.return_value = None # skip real flow

0 commit comments

Comments
 (0)