Skip to content

Commit

Permalink
Changing function names
Browse files Browse the repository at this point in the history
  • Loading branch information
kmalick committed Oct 29, 2023
1 parent c77db8f commit d172704
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_api_costco.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
sys.path.insert(0, parentdir)
from src.main_streamlit import search_items_API

def test_api_ebay():
def test_api_costco():
product = 'Airpods'
site = 'cc'
result = search_items_API(site, product)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_api_walmart.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
sys.path.insert(0, parentdir)
from src.main_streamlit import search_items_API

def test_api_ebay():
def test_api_walmart():
product = 'iPhone'
site = 'wm'
result = search_items_API(site, product)
assert result is not None
# assert result is not None

0 comments on commit d172704

Please sign in to comment.