Skip to content

Commit

Permalink
add sleep to avoid quote exceed issue
Browse files Browse the repository at this point in the history
  • Loading branch information
daneshk committed Aug 9, 2024
1 parent d75824e commit 9394d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ballerina/tests/gsheets-associations-tests.bal
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function gsheetsDepartmentRelationsTest() returns error? {
stream<DepartmentInfo, error?> departmentStream = rainierClient->/departments.get();
DepartmentInfo[] departments = check from DepartmentInfo department in departmentStream
select department;

runtime:sleep(40); // avoid quote exceed issue
DepartmentInfo retrieved = check rainierClient->/departments/["department-12"].get();

DepartmentInfo expected = {
Expand Down

0 comments on commit 9394d20

Please sign in to comment.