Skip to content

Commit

Permalink
Additional testing
Browse files Browse the repository at this point in the history
  • Loading branch information
fpetrini15 committed Jan 22, 2024
1 parent 0fc3acc commit 6af2af2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions qa/L0_backend_identity/identity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,13 @@
param0 = params["param0"]
param1 = params["param1"]
param2 = params["param2"]
param3 = params["param3"]
else:
params = response.parameters
param0 = params["param0"].string_param
param1 = params["param1"].int64_param
param2 = params["param2"].bool_param
param3 = params["param3"].double_param

if param0 != "an example string parameter":
print("error: expected 'param0' == 'an example string parameter'")
Expand All @@ -291,3 +293,6 @@
if param2 != False:
print("error: expected 'param2' == False")
sys.exit(1)
if param3 != 123.123:
print("error: expected 'param3' == 123.123")
sys.exit(1)

0 comments on commit 6af2af2

Please sign in to comment.