Skip to content

Commit 38c32e9

Browse files
committed
Update test parameters in functional test
Updated the test parameter values from (5, 10, 15) to (3, 5, 7). This change ensures the tests cover a different range of input scenarios for improved validation.
1 parent 151a1ce commit 38c32e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tasks/example/tests/functional/main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ namespace {
6565

6666
TEST_P(NesterovARunFuncTests, MatmulFromPic) { ExecuteTest(GetParam()); }
6767

68-
const std::array<TestType, 3> kTestParam = {std::make_tuple(5, "5"), std::make_tuple(10, "10"),
69-
std::make_tuple(15, "15")};
68+
const std::array<TestType, 3> kTestParam = {std::make_tuple(3, "3"), std::make_tuple(5, "5"), std::make_tuple(7, "7")};
7069

7170
INIT_TASK_GENERATOR(InType, kTestParam)
7271

0 commit comments

Comments
 (0)