diff --git a/pkg/questions/car_fleet/main_test.go b/pkg/questions/car_fleet/main_test.go index 878a19d..de9fafd 100644 --- a/pkg/questions/car_fleet/main_test.go +++ b/pkg/questions/car_fleet/main_test.go @@ -3,7 +3,7 @@ package car_fleet_test import ( "testing" - "git.maximhutz.com/practice/pkg/car_fleet" + "git.maximhutz.com/practice/pkg/questions/car_fleet" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/largest_rectangle_in_histogram/main_test.go b/pkg/questions/largest_rectangle_in_histogram/main_test.go index 544e78a..b9e2a2f 100644 --- a/pkg/questions/largest_rectangle_in_histogram/main_test.go +++ b/pkg/questions/largest_rectangle_in_histogram/main_test.go @@ -3,7 +3,7 @@ package largest_rectangle_in_histogram_test import ( "testing" - "git.maximhutz.com/practice/pkg/largest_rectangle_in_histogram" + "git.maximhutz.com/practice/pkg/questions/largest_rectangle_in_histogram" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/longest_consecutive_sequence/main_test.go b/pkg/questions/longest_consecutive_sequence/main_test.go index 99c5d91..1fb4787 100644 --- a/pkg/questions/longest_consecutive_sequence/main_test.go +++ b/pkg/questions/longest_consecutive_sequence/main_test.go @@ -3,7 +3,7 @@ package longest_consecutive_sequence_test import ( "testing" - "git.maximhutz.com/practice/pkg/longest_consecutive_sequence" + "git.maximhutz.com/practice/pkg/questions/longest_consecutive_sequence" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/product_of_array_except_self/main_test.go b/pkg/questions/product_of_array_except_self/main_test.go index 5d3783e..e81befa 100644 --- a/pkg/questions/product_of_array_except_self/main_test.go +++ b/pkg/questions/product_of_array_except_self/main_test.go @@ -3,7 +3,7 @@ package product_of_array_except_self_test import ( "testing" - "git.maximhutz.com/practice/pkg/product_of_array_except_self" + "git.maximhutz.com/practice/pkg/questions/product_of_array_except_self" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/three_sum/main_test.go b/pkg/questions/three_sum/main_test.go index dde9db5..9dffa52 100644 --- a/pkg/questions/three_sum/main_test.go +++ b/pkg/questions/three_sum/main_test.go @@ -3,7 +3,7 @@ package three_sum_test import ( "testing" - "git.maximhutz.com/practice/pkg/three_sum" + "git.maximhutz.com/practice/pkg/questions/three_sum" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/top_k_frequent_elements/main_test.go b/pkg/questions/top_k_frequent_elements/main_test.go index 88cb894..fb57248 100644 --- a/pkg/questions/top_k_frequent_elements/main_test.go +++ b/pkg/questions/top_k_frequent_elements/main_test.go @@ -3,7 +3,7 @@ package top_k_frequent_elements_test import ( "testing" - "git.maximhutz.com/practice/pkg/top_k_frequent_elements" + "git.maximhutz.com/practice/pkg/questions/top_k_frequent_elements" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/two_sum/main_test.go b/pkg/questions/two_sum/main_test.go index 374d3c3..bcd4ca9 100644 --- a/pkg/questions/two_sum/main_test.go +++ b/pkg/questions/two_sum/main_test.go @@ -3,7 +3,7 @@ package two_sum_test import ( "testing" - "git.maximhutz.com/practice/pkg/two_sum" + "git.maximhutz.com/practice/pkg/questions/two_sum" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/valid_palindrome/main_test.go b/pkg/questions/valid_palindrome/main_test.go index 073cbd8..86c4706 100644 --- a/pkg/questions/valid_palindrome/main_test.go +++ b/pkg/questions/valid_palindrome/main_test.go @@ -3,7 +3,7 @@ package valid_palindrome_test import ( "testing" - "git.maximhutz.com/practice/pkg/valid_palindrome" + "git.maximhutz.com/practice/pkg/questions/valid_palindrome" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/valid_sudoku/main_test.go b/pkg/questions/valid_sudoku/main_test.go index 4192ae9..66de95d 100644 --- a/pkg/questions/valid_sudoku/main_test.go +++ b/pkg/questions/valid_sudoku/main_test.go @@ -3,7 +3,7 @@ package valid_sudoku_test import ( "testing" - "git.maximhutz.com/practice/pkg/valid_sudoku" + "git.maximhutz.com/practice/pkg/questions/valid_sudoku" "github.com/stretchr/testify/assert" ) diff --git a/pkg/questions/wildcard_matching/main_test.go b/pkg/questions/wildcard_matching/main_test.go index aac33e4..38555c5 100644 --- a/pkg/questions/wildcard_matching/main_test.go +++ b/pkg/questions/wildcard_matching/main_test.go @@ -3,7 +3,7 @@ package wildcard_matching_test import ( "testing" - "git.maximhutz.com/practice/pkg/wildcard_matching" + "git.maximhutz.com/practice/pkg/questions/wildcard_matching" "github.com/stretchr/testify/assert" )