mirror of
https://github.com/EricNeid/go-openweather.git
synced 2025-01-10 15:05:07 +00:00
Fixed missing dot in import path
This commit is contained in:
parent
739889c07b
commit
3693783e3c
@ -4,7 +4,7 @@ import (
|
||||
"io/ioutil"
|
||||
"testing"
|
||||
|
||||
"EricNeid/go-openweather/internal/verify"
|
||||
"github.com/EricNeid/go-openweather/internal/verify"
|
||||
)
|
||||
|
||||
const apiKeyFile = "testdata/api.key"
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"flag"
|
||||
"fmt"
|
||||
|
||||
"EricNeid/go-openweather"
|
||||
"github.com/EricNeid/go-openweather"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
2
go.mod
2
go.mod
@ -1,3 +1,3 @@
|
||||
module EricNeid/go-openweather
|
||||
module github.com/EricNeid/go-openweather
|
||||
|
||||
go 1.13
|
||||
|
@ -3,7 +3,7 @@ package openweather
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"EricNeid/go-openweather/internal/verify"
|
||||
"github.com/EricNeid/go-openweather/internal/verify"
|
||||
)
|
||||
|
||||
func TestNewQueryForCity(t *testing.T) {
|
||||
|
Loading…
Reference in New Issue
Block a user