diff --git a/tests/go/prog/addprimesum/test.go b/tests/go/prog/addprimesum/test.go index 8f1b7b231..941b8e14e 100644 --- a/tests/go/prog/addprimesum/test.go +++ b/tests/go/prog/addprimesum/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func isAPrime(nb int) bool { diff --git a/tests/go/prog/alphamirror/test.go b/tests/go/prog/alphamirror/test.go index 008943b40..e9b572f78 100644 --- a/tests/go/prog/alphamirror/test.go +++ b/tests/go/prog/alphamirror/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/balancedstring/test.go b/tests/go/prog/balancedstring/test.go index a25267650..2f3b9b5f5 100644 --- a/tests/go/prog/balancedstring/test.go +++ b/tests/go/prog/balancedstring/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := []string{ diff --git a/tests/go/prog/boolean/test.go b/tests/go/prog/boolean/test.go index 11ec372c6..cda4a1c5b 100644 --- a/tests/go/prog/boolean/test.go +++ b/tests/go/prog/boolean/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/brackets/test.go b/tests/go/prog/brackets/test.go index bf880ae8f..913968991 100644 --- a/tests/go/prog/brackets/test.go +++ b/tests/go/prog/brackets/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { oneArgs := []string{ diff --git a/tests/go/prog/brainfuck/test.go b/tests/go/prog/brainfuck/test.go index 0a7ecc867..a7df4a061 100644 --- a/tests/go/prog/brainfuck/test.go +++ b/tests/go/prog/brainfuck/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/cat/test.go b/tests/go/prog/cat/test.go index e0c354ccc..4801cc64d 100644 --- a/tests/go/prog/cat/test.go +++ b/tests/go/prog/cat/test.go @@ -6,7 +6,7 @@ import ( "os/exec" "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/cleanstr/test.go b/tests/go/prog/cleanstr/test.go index 631620297..f65d25a0e 100644 --- a/tests/go/prog/cleanstr/test.go +++ b/tests/go/prog/cleanstr/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := []string{ diff --git a/tests/go/prog/comcheck/test.go b/tests/go/prog/comcheck/test.go index d3fea8e17..d4583c143 100644 --- a/tests/go/prog/comcheck/test.go +++ b/tests/go/prog/comcheck/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/costumeprofit/test.go b/tests/go/prog/costumeprofit/test.go index a192b6d00..2b5b494b1 100644 --- a/tests/go/prog/costumeprofit/test.go +++ b/tests/go/prog/costumeprofit/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) type node struct { diff --git a/tests/go/prog/countdown/test.go b/tests/go/prog/countdown/test.go index 2f0862b5b..0173f54db 100644 --- a/tests/go/prog/countdown/test.go +++ b/tests/go/prog/countdown/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("countdown") diff --git a/tests/go/prog/displaya/test.go b/tests/go/prog/displaya/test.go index 463022ea6..03a926b63 100644 --- a/tests/go/prog/displaya/test.go +++ b/tests/go/prog/displaya/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/displayalpham/test.go b/tests/go/prog/displayalpham/test.go index a1573c332..bba2574f6 100644 --- a/tests/go/prog/displayalpham/test.go +++ b/tests/go/prog/displayalpham/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("displayalpham") diff --git a/tests/go/prog/displayalrevm/test.go b/tests/go/prog/displayalrevm/test.go index 157fa63c1..8d99d3150 100644 --- a/tests/go/prog/displayalrevm/test.go +++ b/tests/go/prog/displayalrevm/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("displayalrevm") diff --git a/tests/go/prog/displayfile/test.go b/tests/go/prog/displayfile/test.go index 868de3285..ca573320e 100644 --- a/tests/go/prog/displayfile/test.go +++ b/tests/go/prog/displayfile/test.go @@ -4,7 +4,7 @@ import ( "os" "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/displayfirstparam/test.go b/tests/go/prog/displayfirstparam/test.go index 1f59c521b..74bd9588a 100644 --- a/tests/go/prog/displayfirstparam/test.go +++ b/tests/go/prog/displayfirstparam/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/displaylastparam/test.go b/tests/go/prog/displaylastparam/test.go index 70ac2d572..30a9d970d 100644 --- a/tests/go/prog/displaylastparam/test.go +++ b/tests/go/prog/displaylastparam/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/displayz/test.go b/tests/go/prog/displayz/test.go index 46d2a1db6..a8c4d0d20 100644 --- a/tests/go/prog/displayz/test.go +++ b/tests/go/prog/displayz/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/doop/test.go b/tests/go/prog/doop/test.go index 29b71e5ef..af4b944e8 100644 --- a/tests/go/prog/doop/test.go +++ b/tests/go/prog/doop/test.go @@ -5,7 +5,7 @@ import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/expandstr/test.go b/tests/go/prog/expandstr/test.go index 4e8b01c8a..98e2bab36 100644 --- a/tests/go/prog/expandstr/test.go +++ b/tests/go/prog/expandstr/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/firstword/test.go b/tests/go/prog/firstword/test.go index 5487e79fa..29f92650e 100644 --- a/tests/go/prog/firstword/test.go +++ b/tests/go/prog/firstword/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := append(lib.MultRandWords(), diff --git a/tests/go/prog/fixthemain/test.go b/tests/go/prog/fixthemain/test.go index 27b6bb3d2..84c636b79 100644 --- a/tests/go/prog/fixthemain/test.go +++ b/tests/go/prog/fixthemain/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("fixthemain") diff --git a/tests/go/prog/flags/test.go b/tests/go/prog/flags/test.go index ae11be37f..292f46bbc 100644 --- a/tests/go/prog/flags/test.go +++ b/tests/go/prog/flags/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" type node struct { flags []string diff --git a/tests/go/prog/fprime/test.go b/tests/go/prog/fprime/test.go index 07cc78252..88a6d991b 100644 --- a/tests/go/prog/fprime/test.go +++ b/tests/go/prog/fprime/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/gcd/test.go b/tests/go/prog/gcd/test.go index 106917aea..95c7fb72c 100644 --- a/tests/go/prog/gcd/test.go +++ b/tests/go/prog/gcd/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/grouping/test.go b/tests/go/prog/grouping/test.go index d08be83a1..c21db9d0f 100644 --- a/tests/go/prog/grouping/test.go +++ b/tests/go/prog/grouping/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func validRegExp(n int) string { result := "(" diff --git a/tests/go/prog/hello/test.go b/tests/go/prog/hello/test.go index 3ccedd55e..c72e0c1fc 100644 --- a/tests/go/prog/hello/test.go +++ b/tests/go/prog/hello/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("hello") diff --git a/tests/go/prog/hiddenp/test.go b/tests/go/prog/hiddenp/test.go index f97f991cf..96a06f073 100644 --- a/tests/go/prog/hiddenp/test.go +++ b/tests/go/prog/hiddenp/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := [][2]string{ diff --git a/tests/go/prog/inter/test.go b/tests/go/prog/inter/test.go index 16b35aa35..ee533294b 100644 --- a/tests/go/prog/inter/test.go +++ b/tests/go/prog/inter/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/ispowerof2/test.go b/tests/go/prog/ispowerof2/test.go index 53c46f5a8..cc7b6057b 100644 --- a/tests/go/prog/ispowerof2/test.go +++ b/tests/go/prog/ispowerof2/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/lastword/test.go b/tests/go/prog/lastword/test.go index be5de0ae4..2ec896db6 100644 --- a/tests/go/prog/lastword/test.go +++ b/tests/go/prog/lastword/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := []string{ diff --git a/tests/go/prog/nbrconvertalpha/test.go b/tests/go/prog/nbrconvertalpha/test.go index 9c7a12c19..1de34d3dd 100644 --- a/tests/go/prog/nbrconvertalpha/test.go +++ b/tests/go/prog/nbrconvertalpha/test.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/nenokku/test.go b/tests/go/prog/nenokku/test.go index da32c4a7e..3a2193383 100644 --- a/tests/go/prog/nenokku/test.go +++ b/tests/go/prog/nenokku/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := [][]string{{ diff --git a/tests/go/prog/onlya/test.go b/tests/go/prog/onlya/test.go index a7349d6ba..a7a8c9200 100644 --- a/tests/go/prog/onlya/test.go +++ b/tests/go/prog/onlya/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("onlya") diff --git a/tests/go/prog/onlyz/test.go b/tests/go/prog/onlyz/test.go index aba89342b..4317037ac 100644 --- a/tests/go/prog/onlyz/test.go +++ b/tests/go/prog/onlyz/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("onlyz") diff --git a/tests/go/prog/options/test.go b/tests/go/prog/options/test.go index 23cceb0d6..57f945903 100644 --- a/tests/go/prog/options/test.go +++ b/tests/go/prog/options/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/paramcount/test.go b/tests/go/prog/paramcount/test.go index 6aad41965..1d46e7079 100644 --- a/tests/go/prog/paramcount/test.go +++ b/tests/go/prog/paramcount/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/piglatin/test.go b/tests/go/prog/piglatin/test.go index c1442a3b0..a8a5bb3c7 100644 --- a/tests/go/prog/piglatin/test.go +++ b/tests/go/prog/piglatin/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/pilot/test.go b/tests/go/prog/pilot/test.go index 1ee4884f7..a0253b4f3 100644 --- a/tests/go/prog/pilot/test.go +++ b/tests/go/prog/pilot/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("pilot") diff --git a/tests/go/prog/point/test.go b/tests/go/prog/point/test.go index 3b4c33e10..0ce927921 100644 --- a/tests/go/prog/point/test.go +++ b/tests/go/prog/point/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("point") diff --git a/tests/go/prog/printalphabet/test.go b/tests/go/prog/printalphabet/test.go index 3da02dbf9..4e5ab55ab 100644 --- a/tests/go/prog/printalphabet/test.go +++ b/tests/go/prog/printalphabet/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("printalphabet") diff --git a/tests/go/prog/printbits/test.go b/tests/go/prog/printbits/test.go index 172512832..d73c3cc04 100644 --- a/tests/go/prog/printbits/test.go +++ b/tests/go/prog/printbits/test.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/printchessboard/test.go b/tests/go/prog/printchessboard/test.go index 47287e576..101e998c0 100644 --- a/tests/go/prog/printchessboard/test.go +++ b/tests/go/prog/printchessboard/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/printdigits/test.go b/tests/go/prog/printdigits/test.go index 9ae2a19b9..ed60f74fc 100644 --- a/tests/go/prog/printdigits/test.go +++ b/tests/go/prog/printdigits/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("printdigits") diff --git a/tests/go/prog/printhex/test.go b/tests/go/prog/printhex/test.go index 1459dacfd..7ca3780c4 100644 --- a/tests/go/prog/printhex/test.go +++ b/tests/go/prog/printhex/test.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/printparams/test.go b/tests/go/prog/printparams/test.go index a4f4976e6..202bb6e39 100644 --- a/tests/go/prog/printparams/test.go +++ b/tests/go/prog/printparams/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/printprogramname/test.go b/tests/go/prog/printprogramname/test.go index 9c82763b1..9e1638c92 100644 --- a/tests/go/prog/printprogramname/test.go +++ b/tests/go/prog/printprogramname/test.go @@ -4,7 +4,7 @@ import ( "os" "os/exec" - "../lib" + "../../lib" ) var name = "student" diff --git a/tests/go/prog/printrevcomb/test.go b/tests/go/prog/printrevcomb/test.go index e7daf9da5..b38536dd3 100644 --- a/tests/go/prog/printrevcomb/test.go +++ b/tests/go/prog/printrevcomb/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("printrevcomb") diff --git a/tests/go/prog/printreversealphabet/test.go b/tests/go/prog/printreversealphabet/test.go index a9a6e683e..1c31509e5 100644 --- a/tests/go/prog/printreversealphabet/test.go +++ b/tests/go/prog/printreversealphabet/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("printreversealphabet") diff --git a/tests/go/prog/raid2/test.go b/tests/go/prog/raid2/test.go index 8898abe85..c94224981 100644 --- a/tests/go/prog/raid2/test.go +++ b/tests/go/prog/raid2/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { valid := [][]string{ diff --git a/tests/go/prog/raid3/test.go b/tests/go/prog/raid3/test.go index 8cedb29f4..35ecb532e 100644 --- a/tests/go/prog/raid3/test.go +++ b/tests/go/prog/raid3/test.go @@ -4,7 +4,7 @@ import ( "os/exec" "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/range/test.go b/tests/go/prog/range/test.go index efb83b7bb..e3257324e 100644 --- a/tests/go/prog/range/test.go +++ b/tests/go/prog/range/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/rectangle/test.go b/tests/go/prog/rectangle/test.go index 8186a9cfb..2dff40b5b 100644 --- a/tests/go/prog/rectangle/test.go +++ b/tests/go/prog/rectangle/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("rectangle") diff --git a/tests/go/prog/repeatalpha/test.go b/tests/go/prog/repeatalpha/test.go index 39ef3e397..ae708c79c 100644 --- a/tests/go/prog/repeatalpha/test.go +++ b/tests/go/prog/repeatalpha/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := []string{ diff --git a/tests/go/prog/reverserange/test.go b/tests/go/prog/reverserange/test.go index 2af69b2f2..c3f34dd8c 100644 --- a/tests/go/prog/reverserange/test.go +++ b/tests/go/prog/reverserange/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/reversestrcap/test.go b/tests/go/prog/reversestrcap/test.go index f3cf1235f..6a4737a30 100644 --- a/tests/go/prog/reversestrcap/test.go +++ b/tests/go/prog/reversestrcap/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/revparams/test.go b/tests/go/prog/revparams/test.go index 58654b73c..19a72e004 100644 --- a/tests/go/prog/revparams/test.go +++ b/tests/go/prog/revparams/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("revparams", "choumi", "is", "the", "best", "cat") diff --git a/tests/go/prog/revwstr/test.go b/tests/go/prog/revwstr/test.go index b20eb9cbe..5421ef8e3 100644 --- a/tests/go/prog/revwstr/test.go +++ b/tests/go/prog/revwstr/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := []string{ diff --git a/tests/go/prog/robottoorigin/test.go b/tests/go/prog/robottoorigin/test.go index 8f2eab337..d39c4ffd7 100644 --- a/tests/go/prog/robottoorigin/test.go +++ b/tests/go/prog/robottoorigin/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := []string{ diff --git a/tests/go/prog/romannumbers/test.go b/tests/go/prog/romannumbers/test.go index ef8f706ae..e280cc410 100644 --- a/tests/go/prog/romannumbers/test.go +++ b/tests/go/prog/romannumbers/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/rostring/test.go b/tests/go/prog/rostring/test.go index 9c225a9ed..387b84484 100644 --- a/tests/go/prog/rostring/test.go +++ b/tests/go/prog/rostring/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := []string{ diff --git a/tests/go/prog/rot13/test.go b/tests/go/prog/rot13/test.go index 860a173fe..15e2608bd 100644 --- a/tests/go/prog/rot13/test.go +++ b/tests/go/prog/rot13/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := append(lib.MultRandWords(), diff --git a/tests/go/prog/rotatevowels/test.go b/tests/go/prog/rotatevowels/test.go index a4c2442c9..d070d6431 100644 --- a/tests/go/prog/rotatevowels/test.go +++ b/tests/go/prog/rotatevowels/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/rpncalc/test.go b/tests/go/prog/rpncalc/test.go index 99addaadc..6ca87d553 100644 --- a/tests/go/prog/rpncalc/test.go +++ b/tests/go/prog/rpncalc/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { args := []string{ diff --git a/tests/go/prog/searchreplace/test.go b/tests/go/prog/searchreplace/test.go index 22b6afe69..f0f1ecb64 100644 --- a/tests/go/prog/searchreplace/test.go +++ b/tests/go/prog/searchreplace/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { type nodeTest struct { diff --git a/tests/go/prog/sortparams/test.go b/tests/go/prog/sortparams/test.go index 7278e3612..53a6566ce 100644 --- a/tests/go/prog/sortparams/test.go +++ b/tests/go/prog/sortparams/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { lib.ChallengeMain("sortparams", lib.MultRandWords()...) diff --git a/tests/go/prog/switchcase/test.go b/tests/go/prog/switchcase/test.go index d45d8685e..802e161c1 100644 --- a/tests/go/prog/switchcase/test.go +++ b/tests/go/prog/switchcase/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := append(lib.MultRandWords(), diff --git a/tests/go/prog/tabmult/test.go b/tests/go/prog/tabmult/test.go index bac11f84e..ea31261e8 100644 --- a/tests/go/prog/tabmult/test.go +++ b/tests/go/prog/tabmult/test.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/tetrisoptimizer/test.go b/tests/go/prog/tetrisoptimizer/test.go index 558afdc25..64da3a0cf 100644 --- a/tests/go/prog/tetrisoptimizer/test.go +++ b/tests/go/prog/tetrisoptimizer/test.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "../lib" + "../../lib" ) type ( diff --git a/tests/go/prog/union/test.go b/tests/go/prog/union/test.go index 653d0182c..ae809b674 100644 --- a/tests/go/prog/union/test.go +++ b/tests/go/prog/union/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() { diff --git a/tests/go/prog/uniqueoccurences/test.go b/tests/go/prog/uniqueoccurences/test.go index f346724e0..d523b1a8d 100644 --- a/tests/go/prog/uniqueoccurences/test.go +++ b/tests/go/prog/uniqueoccurences/test.go @@ -1,6 +1,6 @@ package main -import "../lib" +import "../../lib" func main() { table := []string{ diff --git a/tests/go/prog/wdmatch/test.go b/tests/go/prog/wdmatch/test.go index 320a5cf70..eaab0fd78 100644 --- a/tests/go/prog/wdmatch/test.go +++ b/tests/go/prog/wdmatch/test.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../lib" + "../../lib" ) func main() {