We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727283a commit ac14cfcCopy full SHA for ac14cfc
tests/proxy_unit_tests/test_key_generate_prisma.py
@@ -2033,7 +2033,7 @@ async def test_aview_spend_per_user(prisma_client):
2033
first_user = user_by_spend[0]
2034
2035
print("\nfirst_user=", first_user)
2036
- assert first_user["spend"] > 0
+ assert first_user["spend"] >= 0
2037
except Exception as e:
2038
print("Got Exception", e)
2039
pytest.fail(f"Got exception {e}")
@@ -2051,7 +2051,7 @@ async def test_view_spend_per_key(prisma_client):
2051
first_key = key_by_spend[0]
2052
2053
print("\nfirst_key=", first_key)
2054
- assert first_key.spend > 0
+ assert first_key.spend >= 0
2055
2056
2057
0 commit comments