Skip to content

Commit

Permalink
Fix test race condition due to EnableExperimentalFunctions
Browse files Browse the repository at this point in the history
Signed-off-by: SungJin1212 <[email protected]>
  • Loading branch information
SungJin1212 committed Dec 6, 2024
1 parent 39a284b commit d07aff6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ var (
)

func TestRoundTrip(t *testing.T) {
t.Parallel()
s := httptest.NewServer(
middleware.AuthenticateUser.Wrap(
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Expand Down
2 changes: 0 additions & 2 deletions pkg/querier/tripperware/queryrange/split_by_interval_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ func TestSplitByDay(t *testing.T) {
}

func Test_evaluateAtModifier(t *testing.T) {
t.Parallel()
const (
start, end = int64(1546300800), int64(1646300800)
)
Expand Down Expand Up @@ -386,7 +385,6 @@ func Test_evaluateAtModifier(t *testing.T) {
} {
tt := tt
t.Run(tt.in, func(t *testing.T) {
t.Parallel()
out, err := evaluateAtModifierFunction(tt.in, start, end)
if tt.expectedErrorCode != 0 {
require.Error(t, err)
Expand Down

0 comments on commit d07aff6

Please sign in to comment.