diff --git a/test/TestMultipleAlgoExecutions.cpp b/test/TestMultipleAlgoExecutions.cpp index 7f63c208f..1fe6a6664 100644 --- a/test/TestMultipleAlgoExecutions.cpp +++ b/test/TestMultipleAlgoExecutions.cpp @@ -220,7 +220,7 @@ TEST(TestMultipleAlgoExecutions, SingleRecordMultipleEval) EXPECT_EQ(tensorA->vector(), std::vector({ 3, 3, 3 })); } -TEST(TestAlgoUtils, TestAlgorithmUtilFunctions) +TEST(TestMultipleAlgoExecutions, TestAlgorithmUtilFunctions) { kp::Manager mgr; @@ -273,6 +273,6 @@ TEST(TestAlgoUtils, TestAlgorithmUtilFunctions) pushConsts); EXPECT_EQ(algorithm->getWorkgroup(), workgroup); - EXPECT_EQ(algorithm->getPush(), pushConsts); - EXPECT_EQ(algorithm->getSpecializationConstants(), specConsts); + EXPECT_EQ(algorithm->getPushConstants(), pushConsts); + EXPECT_EQ(algorithm->getSpecializationConstants(), specConsts); }