Skip to content

Commit

Permalink
Merge pull request #25 from vitessio/minifix
Browse files Browse the repository at this point in the history
Fix nil bug
  • Loading branch information
harshit-gangal authored Sep 25, 2024
2 parents e13a54c + 897ca03 commit 1363b4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vitess-tester/tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ func NewTester(
vschema: vschema,
vschemaFile: vschemaFile,
olap: olap,
traceFile: traceFile,
}
if traceFile != nil {
t.traceFile = traceFile
}
return t
}
Expand Down

0 comments on commit 1363b4b

Please sign in to comment.