Skip to content

Commit

Permalink
Merge pull request #6070 from simonpasquier/fix-go-imports
Browse files Browse the repository at this point in the history
chore: fix filenames to avoid import failures
  • Loading branch information
simonpasquier committed Nov 8, 2023
2 parents f0b85f3 + 455f51e commit c465ad0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/prometheus/promcfg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4551,15 +4551,15 @@ func TestTSDBConfig(t *testing.T) {
tsdb: &monitoringv1.TSDBSpec{
OutOfOrderTimeWindow: monitoringv1.Duration("10m"),
},
golden: "TSDB_config_<_v2.39.0.golden",
golden: "TSDB_config_less_than_v2.39.0.golden",
},
{

name: "TSDB config >= v2.39.0",
tsdb: &monitoringv1.TSDBSpec{
OutOfOrderTimeWindow: monitoringv1.Duration("10m"),
},
golden: "TSDB_config_>=_v2.39.0.golden",
golden: "TSDB_config_greater_than_or_equal_to_v2.39.0.golden",
},
} {
t.Run(tc.name, func(t *testing.T) {
Expand Down

0 comments on commit c465ad0

Please sign in to comment.