diff --git a/makefile b/makefile index e4a61d16a..9e218d304 100644 --- a/makefile +++ b/makefile @@ -35,7 +35,7 @@ clean: @rm -rf ./interfaces/ # Run the integration tests -test-integration: +integration-test: @echo Testing membrane plugins @go run github.com/onsi/ginkgo/ginkgo ./tests/... diff --git a/tests/plugins/document/boltdb/boltdb_test.go b/tests/plugins/document/boltdb/boltdb_test.go index 163cc76f1..5ec102645 100644 --- a/tests/plugins/document/boltdb/boltdb_test.go +++ b/tests/plugins/document/boltdb/boltdb_test.go @@ -18,7 +18,7 @@ import ( "os" ds_plugin "github.com/nitric-dev/membrane/plugins/document/boltdb" - test "github.com/nitric-dev/membrane/plugins/document/test" + test "github.com/nitric-dev/membrane/tests/plugins/document" . "github.com/onsi/ginkgo" ) diff --git a/tests/plugins/document/suite_test.go b/tests/plugins/document/suite.go similarity index 99% rename from tests/plugins/document/suite_test.go rename to tests/plugins/document/suite.go index f3abbd814..c221c81f0 100644 --- a/tests/plugins/document/suite_test.go +++ b/tests/plugins/document/suite.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package document_test +package document import ( "fmt"