Skip to content

Commit

Permalink
print comparison error
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Mar 1, 2024
1 parent 605e399 commit 003afa2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flow/e2e/postgres/peer_flow_pg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,9 @@ func (s PeerFlowE2ETestSuitePG) Test_Dynamic_Mirror_Config_Via_Signals() {
return s.comparePGTables(srcTable1Name, dstTable1Name, "id,t") == nil
})
e2e.EnvWaitFor(s.t, env, 2*time.Minute, "initial load + normalize 18 records - second table", func() bool {
return s.comparePGTables(srcTable2Name, dstTable2Name, "id,t") == nil
err := s.comparePGTables(srcTable2Name, dstTable2Name, "id,t")
s.t.Log("TEST", err)
return err == nil
})

workflowState = getWorkflowState()
Expand Down

0 comments on commit 003afa2

Please sign in to comment.