Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit 07a3b4e

Browse files
cevianJLockerman
authored andcommitted
Fix import path
1 parent bb390c6 commit 07a3b4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/api/marshal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"unicode/utf8"
88

99
"github.com/prometheus/prometheus/pkg/labels"
10-
"github.com/prometheus/prometheus/promql"
1110
"github.com/prometheus/prometheus/promql/parser"
11+
"github.com/timescale/timescale-prometheus/pkg/promql"
1212
)
1313

1414
func marshalVectorResponse(writer io.Writer, data promql.Vector, warnings []string) error {

pkg/api/marshal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77

88
"github.com/prometheus/prometheus/pkg/labels"
9-
"github.com/prometheus/prometheus/promql"
109
"github.com/prometheus/prometheus/promql/parser"
10+
"github.com/timescale/timescale-prometheus/pkg/promql"
1111
)
1212

1313
func TestMarshalVector(t *testing.T) {

0 commit comments

Comments
 (0)