Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Gruenfelder committed Jul 27, 2023
1 parent b5373dd commit 5ecbd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-integration/integration-main.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ const waitEntryIsDone = async () => {
dbCounts["BEGIN"]--;
dbCounts["COMMIT"]--;
dbCounts["READ"]--;
if (row.status === EventProcessingStatus.Done) {
if (row?.status === EventProcessingStatus.Done) {
break;
}
if (Date.now() - startTime > 10 * 1000) {
Expand Down

0 comments on commit 5ecbd35

Please sign in to comment.