chore: remove some flaky checks from `dump_tsm_test` (#22144)

* comment out and link to issue #22145
pull/22158/head
Dane Strandboge 2021-08-10 14:43:52 -05:00 committed by GitHub
parent 7aaba338b2
commit c2f6705008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -96,7 +96,8 @@ func Test_DumpTSM_ManyKeys(t *testing.T) {
expectOuts: makeExpectOut(
[]string{"Total: 3", "Size: 102"},
[]string{"Blocks:", "float64", "s8b/gor", "9/19"},
[]string{"cpu", "foobar", "mem", "float64"},
// TODO https://github.com/influxdata/influxdb/issues/22145
//[]string{"cpu", "foobar", "mem", "float64"},
),
})
}
@ -113,8 +114,9 @@ func Test_DumpTSM_FilterKey(t *testing.T) {
expectOuts: makeExpectOut(
[]string{"Total: 3", "Size: 102"},
[]string{"Blocks:", "float64", "s8b/gor", "9/19"},
[]string{"cpu", "foobar", "mem", "float64"},
[]string{"Points:\n Total: 1", "s8b: 1 (33%)", "gor: 1 (33%)"},
// TODO https://github.com/influxdata/influxdb/issues/22145
//[]string{"cpu", "foobar", "mem", "float64"},
//[]string{"Points:\n Total: 1", "s8b: 1 (33%)", "gor: 1 (33%)"},
),
})
}