Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Add missing verifier_test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Hicks committed Aug 31, 2017
1 parent 68255b4 commit cc3e9bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions verifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ var _ = Describe("Verifier", func() {
err := verifier.Verify()
Expect(err).NotTo(HaveOccurred())
Expect(watcher.TableVerificationDidFinishCallCount()).To(Equal(3))
_, missingRows := watcher.TableVerificationDidFinishArgsForCall(0)
Expect(missingRows).To(BeZero())
_, missingRows = watcher.TableVerificationDidFinishArgsForCall(1)
Expect(missingRows).To(BeZero())
for i := 0; i < watcher.TableVerificationDidFinishCallCount(); i++ {
_, missingRows := watcher.TableVerificationDidFinishArgsForCall(i)
Expect(missingRows).To(BeZero())
}
})

Context("when there is data in postgres that is not in mysql", func() {
Expand Down

0 comments on commit cc3e9bb

Please sign in to comment.