File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ package main_test
1919
2020import (
2121 " testing"
22- " github.com/meowgorithm/baby-blackbox"
22+ blackbox " github.com/meowgorithm/baby-blackbox"
2323 app " ."
2424)
2525
Original file line number Diff line number Diff line change 1+ module example
2+
3+ go 1.13
Original file line number Diff line number Diff line change 11package main_test
22
33import (
4- "blackbox"
54 "net/http"
65 "os"
76 "testing"
87
8+ blackbox "github.com/meowgorithm/baby-blackbox"
9+
910 // Import our main application. Depending on how your project is setup
1011 // you may need to do this differently. In many cases the common use case
1112 // is to do something along the lines of:
@@ -14,7 +15,7 @@ import (
1415 //
1516 // ...which would normally be a bad circular import thing, but in the case
1617 // of testing it's fine.
17- example "blackbox/ example"
18+ example "example"
1819)
1920
2021func TestMain (m * testing.M ) {
You can’t perform that action at this time.
0 commit comments