Skip to content

Commit

Permalink
fix error message in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
taylanisikdemir committed Nov 22, 2023
1 parent c6e5354 commit d874c8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (s *VersionTestSuite) TestCheckCompatibleVersion() {
{"2.0", "1.0", "version mismatch", false},
{"1.0", "1.0", "", false},
{"1.0", "2.0", "", false},
{"1.0", "abc", "reading schema version: unconfigured table schema_version", false},
{"1.0", "abc", "reading schema version: table schema_version does not exist", false},
}
for _, flag := range flags {
s.runCheckCompatibleVersion(flag.expectedVersion, flag.actualVersion, flag.errStr, flag.expectedFail)
Expand Down

0 comments on commit d874c8e

Please sign in to comment.