From cb3a8f21b8fe8eb9b9d15c08fc3299dcfc5ded25 Mon Sep 17 00:00:00 2001 From: Collin Brittain Date: Mon, 10 Jul 2023 13:37:44 -0500 Subject: [PATCH] Fix test file name --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 6ab16ace7..7e626befb 100644 --- a/Makefile +++ b/Makefile @@ -48,15 +48,15 @@ fail: @false e2e_happy_path: e2e_clean_slate - integration_tests/integration_tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestHappyPath || make -s fail + integration_tests/integration-tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestHappyPath || make -s fail e2e_valset_update: e2e_clean_slate - integration_tests/integration_tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestValsetUpdate || make -s fail + integration_tests/integration-tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestValsetUpdate || make -s fail e2e_validator_out: e2e_clean_slate - integration_tests/integration_tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestValidatorOut || make -s fail + integration_tests/integration-tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestValidatorOut || make -s fail e2e_transaction_stress: e2e_clean_slate - integration_tests/integration_tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestTransactionStress || make -s fail + integration_tests/integration-tests.test -test.failfast -test.v -test.run IntegrationTestSuite -testify.m TestTransactionStress || make -s fail