Skip to content

Commit 3d00d14

Browse files
author
allan
committed
Fix import path and update GoGemini initialization in tests
1 parent 7276873 commit 3d00d14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/a_main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/Allan-Nava/go-gemini/configuration"
88
"github.com/Allan-Nava/go-gemini/env"
9-
"github.com/Allan-Nava/go-gemini/gogemini/
9+
"github.com/Allan-Nava/go-gemini/gogemini"
1010
)
1111

1212
func TestMain(m *testing.M) {
@@ -23,7 +23,7 @@ func TestMain(m *testing.M) {
2323
func GoGetGemini() gogemini.IGoGemini {
2424
//
2525
configuration := configuration.GetConfiguration()
26-
g := gogemini.NewGoBoard(
26+
g := gogemini.NewGoGemini(
2727
configuration,
2828
)
2929
//

0 commit comments

Comments
 (0)