Skip to content

Commit

Permalink
Prices updates
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirosson committed Nov 19, 2024
1 parent e5fee2e commit eb363d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion items/jade.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"purchasable": true,
"basic-information": {
"price": {
"value": "$64.99"
"value": "$79.00"
},
"amazon": {
"supported": true
Expand Down
2 changes: 1 addition & 1 deletion scripts/prices/ellipal-titan-2.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
price_element = soup.find('span', class_='money')
price = price_element.get_text(strip=True)

assert price == "$169.00", f"Failed: Price '{price}' does not match expected value"
assert price == "$129.00", f"Failed: Price '{price}' does not match expected value"

print(price)
2 changes: 1 addition & 1 deletion scripts/prices/ellipal-titan-mini.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
price_element = soup.find('span', class_='money')
price = price_element.get_text(strip=True)

assert price == "$99.00", f"Failed: Price '{price}' does not match expected value"
assert price == "$79.00", f"Failed: Price '{price}' does not match expected value"

print(price)
2 changes: 1 addition & 1 deletion scripts/prices/jade.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# Extract the price value
price = price_element.text.strip().replace(' USD', '')

assert price == "$64.99", f"Failed: Price '{price}' does not match expected value"
assert price == "$79.00", f"Failed: Price '{price}' does not match expected value"

print(price)

0 comments on commit eb363d9

Please sign in to comment.