From c8317283a6fa6e5e5582bfe71dc3ec3d5e8b7101 Mon Sep 17 00:00:00 2001 From: Xavier Petit <32063953+xpetit@users.noreply.github.com> Date: Tue, 28 Apr 2020 11:19:32 +0200 Subject: [PATCH] Update imports --- tests/go/prog/test_addprimesum.go | 2 +- tests/go/prog/test_alphamirror.go | 2 +- tests/go/prog/test_balancedstring.go | 2 +- tests/go/prog/test_boolean.go | 2 +- tests/go/prog/test_brackets.go | 2 +- tests/go/prog/test_brainfuck.go | 2 +- tests/go/prog/test_cat.go | 2 +- tests/go/prog/test_cleanstr.go | 2 +- tests/go/prog/test_comcheck.go | 2 +- tests/go/prog/test_costumeprofit.go | 2 +- tests/go/prog/test_countdown.go | 2 +- tests/go/prog/test_displaya.go | 2 +- tests/go/prog/test_displayalpham.go | 2 +- tests/go/prog/test_displayalrevm.go | 2 +- tests/go/prog/test_displayfile.go | 2 +- tests/go/prog/test_displayfirstparam.go | 2 +- tests/go/prog/test_displaylastparam.go | 2 +- tests/go/prog/test_displayz.go | 2 +- tests/go/prog/test_doop.go | 2 +- tests/go/prog/test_expandstr.go | 2 +- tests/go/prog/test_firstword.go | 2 +- tests/go/prog/test_fixthemain.go | 2 +- tests/go/prog/test_flags.go | 2 +- tests/go/prog/test_fprime.go | 2 +- tests/go/prog/test_gcd.go | 2 +- tests/go/prog/test_grouping.go | 2 +- tests/go/prog/test_hello.go | 2 +- tests/go/prog/test_hiddenp.go | 2 +- tests/go/prog/test_inter.go | 2 +- tests/go/prog/test_ispowerof2.go | 2 +- tests/go/prog/test_lastword.go | 2 +- tests/go/prog/test_nbrconvertalpha.go | 2 +- tests/go/prog/test_nenokku.go | 2 +- tests/go/prog/test_onlya.go | 2 +- tests/go/prog/test_onlyz.go | 2 +- tests/go/prog/test_options.go | 2 +- tests/go/prog/test_paramcount.go | 2 +- tests/go/prog/test_piglatin.go | 2 +- tests/go/prog/test_pilot.go | 2 +- tests/go/prog/test_point.go | 2 +- tests/go/prog/test_printalphabet.go | 2 +- tests/go/prog/test_printbits.go | 2 +- tests/go/prog/test_printchessboard.go | 2 +- tests/go/prog/test_printdigits.go | 2 +- tests/go/prog/test_printhex.go | 2 +- tests/go/prog/test_printparams.go | 2 +- tests/go/prog/test_printprogramname.go | 2 +- tests/go/prog/test_printrevcomb.go | 2 +- tests/go/prog/test_printreversealphabet.go | 2 +- tests/go/prog/test_raid2.go | 2 +- tests/go/prog/test_raid3.go | 2 +- tests/go/prog/test_range.go | 2 +- tests/go/prog/test_rectangle.go | 2 +- tests/go/prog/test_repeatalpha.go | 2 +- tests/go/prog/test_reverserange.go | 2 +- tests/go/prog/test_reversestrcap.go | 2 +- tests/go/prog/test_revparams.go | 2 +- tests/go/prog/test_revwstr.go | 2 +- tests/go/prog/test_robottoorigin.go | 2 +- tests/go/prog/test_romannumbers.go | 2 +- tests/go/prog/test_rostring.go | 2 +- tests/go/prog/test_rot13.go | 2 +- tests/go/prog/test_rotatevowels.go | 2 +- tests/go/prog/test_rpncalc.go | 2 +- tests/go/prog/test_searchreplace.go | 2 +- tests/go/prog/test_sortparams.go | 2 +- tests/go/prog/test_switchcase.go | 2 +- tests/go/prog/test_tabmult.go | 2 +- tests/go/prog/test_tetrisoptimizer.go | 2 +- tests/go/prog/test_union.go | 2 +- tests/go/prog/test_uniqueoccurences.go | 2 +- tests/go/prog/test_wdmatch.go | 2 +- 72 files changed, 72 insertions(+), 72 deletions(-) diff --git a/tests/go/prog/test_addprimesum.go b/tests/go/prog/test_addprimesum.go index 941b8e14e..8f1b7b231 100644 --- a/tests/go/prog/test_addprimesum.go +++ b/tests/go/prog/test_addprimesum.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func isAPrime(nb int) bool { diff --git a/tests/go/prog/test_alphamirror.go b/tests/go/prog/test_alphamirror.go index e9b572f78..008943b40 100644 --- a/tests/go/prog/test_alphamirror.go +++ b/tests/go/prog/test_alphamirror.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/test_balancedstring.go b/tests/go/prog/test_balancedstring.go index 2f3b9b5f5..a25267650 100644 --- a/tests/go/prog/test_balancedstring.go +++ b/tests/go/prog/test_balancedstring.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := []string{ diff --git a/tests/go/prog/test_boolean.go b/tests/go/prog/test_boolean.go index cda4a1c5b..11ec372c6 100644 --- a/tests/go/prog/test_boolean.go +++ b/tests/go/prog/test_boolean.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_brackets.go b/tests/go/prog/test_brackets.go index 913968991..bf880ae8f 100644 --- a/tests/go/prog/test_brackets.go +++ b/tests/go/prog/test_brackets.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { oneArgs := []string{ diff --git a/tests/go/prog/test_brainfuck.go b/tests/go/prog/test_brainfuck.go index a7df4a061..0a7ecc867 100644 --- a/tests/go/prog/test_brainfuck.go +++ b/tests/go/prog/test_brainfuck.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_cat.go b/tests/go/prog/test_cat.go index 4801cc64d..e0c354ccc 100644 --- a/tests/go/prog/test_cat.go +++ b/tests/go/prog/test_cat.go @@ -6,7 +6,7 @@ import ( "os/exec" "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_cleanstr.go b/tests/go/prog/test_cleanstr.go index f65d25a0e..631620297 100644 --- a/tests/go/prog/test_cleanstr.go +++ b/tests/go/prog/test_cleanstr.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := []string{ diff --git a/tests/go/prog/test_comcheck.go b/tests/go/prog/test_comcheck.go index d4583c143..d3fea8e17 100644 --- a/tests/go/prog/test_comcheck.go +++ b/tests/go/prog/test_comcheck.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_costumeprofit.go b/tests/go/prog/test_costumeprofit.go index 2b5b494b1..a192b6d00 100644 --- a/tests/go/prog/test_costumeprofit.go +++ b/tests/go/prog/test_costumeprofit.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) type node struct { diff --git a/tests/go/prog/test_countdown.go b/tests/go/prog/test_countdown.go index 0173f54db..2f0862b5b 100644 --- a/tests/go/prog/test_countdown.go +++ b/tests/go/prog/test_countdown.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("countdown") diff --git a/tests/go/prog/test_displaya.go b/tests/go/prog/test_displaya.go index 03a926b63..463022ea6 100644 --- a/tests/go/prog/test_displaya.go +++ b/tests/go/prog/test_displaya.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_displayalpham.go b/tests/go/prog/test_displayalpham.go index bba2574f6..a1573c332 100644 --- a/tests/go/prog/test_displayalpham.go +++ b/tests/go/prog/test_displayalpham.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("displayalpham") diff --git a/tests/go/prog/test_displayalrevm.go b/tests/go/prog/test_displayalrevm.go index 8d99d3150..157fa63c1 100644 --- a/tests/go/prog/test_displayalrevm.go +++ b/tests/go/prog/test_displayalrevm.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("displayalrevm") diff --git a/tests/go/prog/test_displayfile.go b/tests/go/prog/test_displayfile.go index ca573320e..868de3285 100644 --- a/tests/go/prog/test_displayfile.go +++ b/tests/go/prog/test_displayfile.go @@ -4,7 +4,7 @@ import ( "os" "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_displayfirstparam.go b/tests/go/prog/test_displayfirstparam.go index 74bd9588a..1f59c521b 100644 --- a/tests/go/prog/test_displayfirstparam.go +++ b/tests/go/prog/test_displayfirstparam.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_displaylastparam.go b/tests/go/prog/test_displaylastparam.go index 30a9d970d..70ac2d572 100644 --- a/tests/go/prog/test_displaylastparam.go +++ b/tests/go/prog/test_displaylastparam.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_displayz.go b/tests/go/prog/test_displayz.go index a8c4d0d20..46d2a1db6 100644 --- a/tests/go/prog/test_displayz.go +++ b/tests/go/prog/test_displayz.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_doop.go b/tests/go/prog/test_doop.go index af4b944e8..29b71e5ef 100644 --- a/tests/go/prog/test_doop.go +++ b/tests/go/prog/test_doop.go @@ -5,7 +5,7 @@ import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_expandstr.go b/tests/go/prog/test_expandstr.go index 98e2bab36..4e8b01c8a 100644 --- a/tests/go/prog/test_expandstr.go +++ b/tests/go/prog/test_expandstr.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/test_firstword.go b/tests/go/prog/test_firstword.go index 29f92650e..5487e79fa 100644 --- a/tests/go/prog/test_firstword.go +++ b/tests/go/prog/test_firstword.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := append(lib.MultRandWords(), diff --git a/tests/go/prog/test_fixthemain.go b/tests/go/prog/test_fixthemain.go index 84c636b79..27b6bb3d2 100644 --- a/tests/go/prog/test_fixthemain.go +++ b/tests/go/prog/test_fixthemain.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("fixthemain") diff --git a/tests/go/prog/test_flags.go b/tests/go/prog/test_flags.go index 292f46bbc..ae11be37f 100644 --- a/tests/go/prog/test_flags.go +++ b/tests/go/prog/test_flags.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" type node struct { flags []string diff --git a/tests/go/prog/test_fprime.go b/tests/go/prog/test_fprime.go index 88a6d991b..07cc78252 100644 --- a/tests/go/prog/test_fprime.go +++ b/tests/go/prog/test_fprime.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_gcd.go b/tests/go/prog/test_gcd.go index 95c7fb72c..106917aea 100644 --- a/tests/go/prog/test_gcd.go +++ b/tests/go/prog/test_gcd.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_grouping.go b/tests/go/prog/test_grouping.go index c21db9d0f..d08be83a1 100644 --- a/tests/go/prog/test_grouping.go +++ b/tests/go/prog/test_grouping.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func validRegExp(n int) string { result := "(" diff --git a/tests/go/prog/test_hello.go b/tests/go/prog/test_hello.go index c72e0c1fc..3ccedd55e 100644 --- a/tests/go/prog/test_hello.go +++ b/tests/go/prog/test_hello.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("hello") diff --git a/tests/go/prog/test_hiddenp.go b/tests/go/prog/test_hiddenp.go index 96a06f073..f97f991cf 100644 --- a/tests/go/prog/test_hiddenp.go +++ b/tests/go/prog/test_hiddenp.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := [][2]string{ diff --git a/tests/go/prog/test_inter.go b/tests/go/prog/test_inter.go index ee533294b..16b35aa35 100644 --- a/tests/go/prog/test_inter.go +++ b/tests/go/prog/test_inter.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_ispowerof2.go b/tests/go/prog/test_ispowerof2.go index cc7b6057b..53c46f5a8 100644 --- a/tests/go/prog/test_ispowerof2.go +++ b/tests/go/prog/test_ispowerof2.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_lastword.go b/tests/go/prog/test_lastword.go index 2ec896db6..be5de0ae4 100644 --- a/tests/go/prog/test_lastword.go +++ b/tests/go/prog/test_lastword.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := []string{ diff --git a/tests/go/prog/test_nbrconvertalpha.go b/tests/go/prog/test_nbrconvertalpha.go index 1de34d3dd..9c7a12c19 100644 --- a/tests/go/prog/test_nbrconvertalpha.go +++ b/tests/go/prog/test_nbrconvertalpha.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_nenokku.go b/tests/go/prog/test_nenokku.go index 3a2193383..da32c4a7e 100644 --- a/tests/go/prog/test_nenokku.go +++ b/tests/go/prog/test_nenokku.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := [][]string{{ diff --git a/tests/go/prog/test_onlya.go b/tests/go/prog/test_onlya.go index a7a8c9200..a7349d6ba 100644 --- a/tests/go/prog/test_onlya.go +++ b/tests/go/prog/test_onlya.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("onlya") diff --git a/tests/go/prog/test_onlyz.go b/tests/go/prog/test_onlyz.go index 4317037ac..aba89342b 100644 --- a/tests/go/prog/test_onlyz.go +++ b/tests/go/prog/test_onlyz.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("onlyz") diff --git a/tests/go/prog/test_options.go b/tests/go/prog/test_options.go index 57f945903..23cceb0d6 100644 --- a/tests/go/prog/test_options.go +++ b/tests/go/prog/test_options.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_paramcount.go b/tests/go/prog/test_paramcount.go index 1d46e7079..6aad41965 100644 --- a/tests/go/prog/test_paramcount.go +++ b/tests/go/prog/test_paramcount.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_piglatin.go b/tests/go/prog/test_piglatin.go index a8a5bb3c7..c1442a3b0 100644 --- a/tests/go/prog/test_piglatin.go +++ b/tests/go/prog/test_piglatin.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/test_pilot.go b/tests/go/prog/test_pilot.go index a0253b4f3..1ee4884f7 100644 --- a/tests/go/prog/test_pilot.go +++ b/tests/go/prog/test_pilot.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("pilot") diff --git a/tests/go/prog/test_point.go b/tests/go/prog/test_point.go index 0ce927921..3b4c33e10 100644 --- a/tests/go/prog/test_point.go +++ b/tests/go/prog/test_point.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("point") diff --git a/tests/go/prog/test_printalphabet.go b/tests/go/prog/test_printalphabet.go index 4e5ab55ab..3da02dbf9 100644 --- a/tests/go/prog/test_printalphabet.go +++ b/tests/go/prog/test_printalphabet.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("printalphabet") diff --git a/tests/go/prog/test_printbits.go b/tests/go/prog/test_printbits.go index d73c3cc04..172512832 100644 --- a/tests/go/prog/test_printbits.go +++ b/tests/go/prog/test_printbits.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_printchessboard.go b/tests/go/prog/test_printchessboard.go index 101e998c0..47287e576 100644 --- a/tests/go/prog/test_printchessboard.go +++ b/tests/go/prog/test_printchessboard.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_printdigits.go b/tests/go/prog/test_printdigits.go index ed60f74fc..9ae2a19b9 100644 --- a/tests/go/prog/test_printdigits.go +++ b/tests/go/prog/test_printdigits.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("printdigits") diff --git a/tests/go/prog/test_printhex.go b/tests/go/prog/test_printhex.go index 7ca3780c4..1459dacfd 100644 --- a/tests/go/prog/test_printhex.go +++ b/tests/go/prog/test_printhex.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_printparams.go b/tests/go/prog/test_printparams.go index 202bb6e39..a4f4976e6 100644 --- a/tests/go/prog/test_printparams.go +++ b/tests/go/prog/test_printparams.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_printprogramname.go b/tests/go/prog/test_printprogramname.go index 9e1638c92..9c82763b1 100644 --- a/tests/go/prog/test_printprogramname.go +++ b/tests/go/prog/test_printprogramname.go @@ -4,7 +4,7 @@ import ( "os" "os/exec" - "../../lib" + "../lib" ) var name = "student" diff --git a/tests/go/prog/test_printrevcomb.go b/tests/go/prog/test_printrevcomb.go index b38536dd3..e7daf9da5 100644 --- a/tests/go/prog/test_printrevcomb.go +++ b/tests/go/prog/test_printrevcomb.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("printrevcomb") diff --git a/tests/go/prog/test_printreversealphabet.go b/tests/go/prog/test_printreversealphabet.go index 1c31509e5..a9a6e683e 100644 --- a/tests/go/prog/test_printreversealphabet.go +++ b/tests/go/prog/test_printreversealphabet.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("printreversealphabet") diff --git a/tests/go/prog/test_raid2.go b/tests/go/prog/test_raid2.go index c94224981..8898abe85 100644 --- a/tests/go/prog/test_raid2.go +++ b/tests/go/prog/test_raid2.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { valid := [][]string{ diff --git a/tests/go/prog/test_raid3.go b/tests/go/prog/test_raid3.go index 35ecb532e..8cedb29f4 100644 --- a/tests/go/prog/test_raid3.go +++ b/tests/go/prog/test_raid3.go @@ -4,7 +4,7 @@ import ( "os/exec" "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_range.go b/tests/go/prog/test_range.go index e3257324e..efb83b7bb 100644 --- a/tests/go/prog/test_range.go +++ b/tests/go/prog/test_range.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_rectangle.go b/tests/go/prog/test_rectangle.go index 2dff40b5b..8186a9cfb 100644 --- a/tests/go/prog/test_rectangle.go +++ b/tests/go/prog/test_rectangle.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("rectangle") diff --git a/tests/go/prog/test_repeatalpha.go b/tests/go/prog/test_repeatalpha.go index ae708c79c..39ef3e397 100644 --- a/tests/go/prog/test_repeatalpha.go +++ b/tests/go/prog/test_repeatalpha.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := []string{ diff --git a/tests/go/prog/test_reverserange.go b/tests/go/prog/test_reverserange.go index c3f34dd8c..2af69b2f2 100644 --- a/tests/go/prog/test_reverserange.go +++ b/tests/go/prog/test_reverserange.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_reversestrcap.go b/tests/go/prog/test_reversestrcap.go index 6a4737a30..f3cf1235f 100644 --- a/tests/go/prog/test_reversestrcap.go +++ b/tests/go/prog/test_reversestrcap.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := [][]string{ diff --git a/tests/go/prog/test_revparams.go b/tests/go/prog/test_revparams.go index 19a72e004..58654b73c 100644 --- a/tests/go/prog/test_revparams.go +++ b/tests/go/prog/test_revparams.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/test_revwstr.go b/tests/go/prog/test_revwstr.go index 5421ef8e3..b20eb9cbe 100644 --- a/tests/go/prog/test_revwstr.go +++ b/tests/go/prog/test_revwstr.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := []string{ diff --git a/tests/go/prog/test_robottoorigin.go b/tests/go/prog/test_robottoorigin.go index d39c4ffd7..8f2eab337 100644 --- a/tests/go/prog/test_robottoorigin.go +++ b/tests/go/prog/test_robottoorigin.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := []string{ diff --git a/tests/go/prog/test_romannumbers.go b/tests/go/prog/test_romannumbers.go index e280cc410..ef8f706ae 100644 --- a/tests/go/prog/test_romannumbers.go +++ b/tests/go/prog/test_romannumbers.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_rostring.go b/tests/go/prog/test_rostring.go index 387b84484..9c225a9ed 100644 --- a/tests/go/prog/test_rostring.go +++ b/tests/go/prog/test_rostring.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := []string{ diff --git a/tests/go/prog/test_rot13.go b/tests/go/prog/test_rot13.go index 15e2608bd..860a173fe 100644 --- a/tests/go/prog/test_rot13.go +++ b/tests/go/prog/test_rot13.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := append(lib.MultRandWords(), diff --git a/tests/go/prog/test_rotatevowels.go b/tests/go/prog/test_rotatevowels.go index d070d6431..a4c2442c9 100644 --- a/tests/go/prog/test_rotatevowels.go +++ b/tests/go/prog/test_rotatevowels.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_rpncalc.go b/tests/go/prog/test_rpncalc.go index 6ca87d553..99addaadc 100644 --- a/tests/go/prog/test_rpncalc.go +++ b/tests/go/prog/test_rpncalc.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { args := []string{ diff --git a/tests/go/prog/test_searchreplace.go b/tests/go/prog/test_searchreplace.go index f0f1ecb64..22b6afe69 100644 --- a/tests/go/prog/test_searchreplace.go +++ b/tests/go/prog/test_searchreplace.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { type nodeTest struct { diff --git a/tests/go/prog/test_sortparams.go b/tests/go/prog/test_sortparams.go index 53a6566ce..7278e3612 100644 --- a/tests/go/prog/test_sortparams.go +++ b/tests/go/prog/test_sortparams.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { lib.ChallengeMain("sortparams", lib.MultRandWords()...) diff --git a/tests/go/prog/test_switchcase.go b/tests/go/prog/test_switchcase.go index 802e161c1..d45d8685e 100644 --- a/tests/go/prog/test_switchcase.go +++ b/tests/go/prog/test_switchcase.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := append(lib.MultRandWords(), diff --git a/tests/go/prog/test_tabmult.go b/tests/go/prog/test_tabmult.go index ea31261e8..bac11f84e 100644 --- a/tests/go/prog/test_tabmult.go +++ b/tests/go/prog/test_tabmult.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_tetrisoptimizer.go b/tests/go/prog/test_tetrisoptimizer.go index 64da3a0cf..558afdc25 100644 --- a/tests/go/prog/test_tetrisoptimizer.go +++ b/tests/go/prog/test_tetrisoptimizer.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "../../lib" + "../lib" ) type ( diff --git a/tests/go/prog/test_union.go b/tests/go/prog/test_union.go index ae809b674..653d0182c 100644 --- a/tests/go/prog/test_union.go +++ b/tests/go/prog/test_union.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() { diff --git a/tests/go/prog/test_uniqueoccurences.go b/tests/go/prog/test_uniqueoccurences.go index d523b1a8d..f346724e0 100644 --- a/tests/go/prog/test_uniqueoccurences.go +++ b/tests/go/prog/test_uniqueoccurences.go @@ -1,6 +1,6 @@ package main -import "../../lib" +import "../lib" func main() { table := []string{ diff --git a/tests/go/prog/test_wdmatch.go b/tests/go/prog/test_wdmatch.go index eaab0fd78..320a5cf70 100644 --- a/tests/go/prog/test_wdmatch.go +++ b/tests/go/prog/test_wdmatch.go @@ -3,7 +3,7 @@ package main import ( "strings" - "../../lib" + "../lib" ) func main() {