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"
|
"io/ioutil"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"EricNeid/go-openweather/internal/verify"
|
"github.com/EricNeid/go-openweather/internal/verify"
|
||||||
)
|
)
|
||||||
|
|
||||||
const apiKeyFile = "testdata/api.key"
|
const apiKeyFile = "testdata/api.key"
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"EricNeid/go-openweather"
|
"github.com/EricNeid/go-openweather"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
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
|
go 1.13
|
||||||
|
@ -3,7 +3,7 @@ package openweather
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"EricNeid/go-openweather/internal/verify"
|
"github.com/EricNeid/go-openweather/internal/verify"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestNewQueryForCity(t *testing.T) {
|
func TestNewQueryForCity(t *testing.T) {
|
||||||
|
Loading…
Reference in New Issue
Block a user