diff --git a/examples/tests-bundle.zzb b/examples/tests-bundle.zzb index a13d10c..46e5129 100644 --- a/examples/tests-bundle.zzb +++ b/examples/tests-bundle.zzb @@ -17,7 +17,7 @@ variables: addressVar: streetAddress: 7th street city: Nara - postalCode: "560002" # string. This will make a difference when used in the body + postalCode: "560001" # string. This will make a difference when used in the body getUrl: /get fooVar: bar agrostar: https://test-farmerapp.agrostar.in @@ -277,7 +277,7 @@ requests: $.data.age.something: 55 # jsonpath should take care of this. $.data.numbers[5]: 0 # jsonpath should take care of this - # This request should tests should all fail due to bad tests schema + # This request tests should all fail due to bad tests schema # Ensure we don't crash on these. tests-negative-schema: method: POST @@ -301,7 +301,7 @@ requests: url: /post body: name: Tom - address: { city: Bangalore, pincode: 560001 } + address: { city: Bangalore, pincode: 560002 } setvars: nameVar: $.data.name addressVarNum: $.data.address @@ -327,7 +327,7 @@ requests: tests: $.data.name: Tom $.data.city: Bangalore - $.data.pincode: 560001 + $.data.pincode: 560002 $.data.customHeader: Custom Header Value capture-checks-object-option-1: @@ -343,7 +343,7 @@ requests: tests: $.data.name: Tom $.data.address.city: Bangalore - $.data.address.pincode: 560001 # this time it is NOT a string. + $.data.address.pincode: 560002 # this time it is NOT a string. capture-checks-object-option-2: method: POST @@ -353,4 +353,4 @@ requests: address: $addressVarNum tests: $.data.name: Tom - $.data.address: { $eq: { city: Bangalore, pincode: 560001 } } + $.data.address: { $eq: { city: Bangalore, pincode: 560002 } }