playwright: fixed encoding issue in test, while adding result in testCase (#24087)

This commit is contained in:
Shailesh Parmar 2025-10-30 12:15:16 +05:30 committed by GitHub
parent 68fb6f63ea
commit ade97a81b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -370,7 +370,9 @@ export class TableClass extends EntityClass {
testCaseResult: unknown
) {
const testCaseResultResponse = await apiContext.post(
`/api/v1/dataQuality/testCases/testCaseResults/${testCaseFqn}`,
`/api/v1/dataQuality/testCases/testCaseResults/${encodeURIComponent(
testCaseFqn
)}`,
{ data: testCaseResult }
);