Browse Source

test: change payload type

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/6470/head
Pranav C 1 year ago
parent
commit
b6da0f2cd8
  1. 16
      tests/playwright/tests/db/features/webhook.spec.ts

16
tests/playwright/tests/db/features/webhook.spec.ts

@ -694,22 +694,22 @@ test.describe.serial('Webhook', () => {
{ {
Id: 1, Id: 1,
Country: 'India', Country: 'India',
CountryCode: '1', CountryCode: 1,
CityList: '2', CityList: 2,
CityCodeRollup: '2', CityCodeRollup: 2,
CityCodeFormula: 100, CityCodeFormula: 100,
CityCodeLookup: ['23', '33'], CityCodeLookup: [23, 33],
}, },
], ],
rows: [ rows: [
{ {
Id: 1, Id: 1,
Country: 'INDIA', Country: 'INDIA',
CountryCode: '1', CountryCode: 1,
CityList: '2', CityList: 2,
CityCodeRollup: '2', CityCodeRollup: 2,
CityCodeFormula: 100, CityCodeFormula: 100,
CityCodeLookup: ['23', '33'], CityCodeLookup: [23, 33],
}, },
], ],
}, },

Loading…
Cancel
Save