Skip to content

Commit 5a5005a

Browse files
committed
Minor modification in web scraping scenarios
1 parent 1a817bc commit 5a5005a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/web-scraping/test_async_ecommerce_scrapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async def scrap_ecommerce(url):
4343
'product name': name.get_text(),
4444
'product price': price.get_text()
4545
}
46-
46+
4747
meta_data_arr.append(meta_data_dict)
4848

4949
return meta_data_arr

tests/web-scraping/test_sync_ecommerce_scrapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ def scrap_ecommerce(url) -> list:
5252
print("Product Page = " + test_url)
5353
print("*********************************************************************************************************\n")
5454
helpers.print_scrapped_content(meta_data_arr)
55-
55+
5656
print("\nTime elapsed is " + str((time.time() - start_time)) + " seconds")

0 commit comments

Comments
 (0)