Skip to content

Commit

Permalink
[urlfetch] Rename Url to URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
verytable committed Mar 12, 2021
1 parent 5ca48c1 commit 627d8ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions urlfetch/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func TestMain(m *testing.M) {
}())
}

func TestUrlFetch_valid(t *testing.T) {
func TestURLFetch_valid(t *testing.T) {
binary, err := binCache.GetBinary(urlfetchImportPath)
require.NoError(t, err)

Expand Down Expand Up @@ -102,7 +102,7 @@ func TestUrlFetch_valid(t *testing.T) {
}
}

func TestUrlFetch_malformed(t *testing.T) {
func TestURLFetch_malformed(t *testing.T) {
binary, err := binCache.GetBinary(urlfetchImportPath)
require.NoError(t, err)

Expand Down Expand Up @@ -139,7 +139,7 @@ func TestUrlFetch_malformed(t *testing.T) {
}
}

func TestUrlFetch_order(t *testing.T) {
func TestURLFetch_order(t *testing.T) {
binary, err := binCache.GetBinary(urlfetchImportPath)
require.NoError(t, err)

Expand Down

0 comments on commit 627d8ff

Please sign in to comment.