Skip to content

Commit a3eb000

Browse files
committed
Fix compile issues
The latest batch of merged PR's made lots of big changes, and broke some tests.
1 parent 8f36c13 commit a3eb000

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

styleparam_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
package runtime
1515

1616
import (
17-
"github.com/google/uuid"
1817
"testing"
1918
"time"
2019

@@ -679,7 +678,7 @@ func TestStyleParam(t *testing.T) {
679678
assert.EqualValues(t, "date_field,1996-03-19,time_field,1996-03-19T00%3A00%3A00Z,uuid_field,baa07328-452e-40bd-aa2e-fa823ec13605", result)
680679

681680
// Test handling of struct that implement encoding.TextMarshaler
682-
timeVal = time.Date(1996, time.March, 19, 0, 0, 0, 0, time.UTC)
681+
timeVal = time.Date(1996, time.March, 19, 0, 0, 0, 0, time.UTC)
683682

684683
result, err = StyleParamWithLocation("simple", false, "id", ParamLocationQuery, timeVal)
685684
assert.NoError(t, err)

0 commit comments

Comments
 (0)