Skip to content

Commit cc27e28

Browse files
committed
asim: address a TODO
As of #150594, all datadriven test files have a .txt extension.
1 parent 19fcdb6 commit cc27e28

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/kv/kvserver/asim/tests/datadriven_simulation_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,7 @@ func TestDataDriven(t *testing.T) {
188188
ctx := context.Background()
189189
dir := datapathutils.TestDataPath(t, "non_rand")
190190
datadriven.Walk(t, dir, func(t *testing.T, path string) {
191-
if filepath.Ext(path) == ".png" {
192-
// TODO(tbg): make this != "txt" once all test files have that suffix.
191+
if filepath.Ext(path) != ".txt" {
193192
return
194193
}
195194
plotNum := 0

0 commit comments

Comments
 (0)