Skip to content

Commit

Permalink
fixed C++ test naming mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Jan 21, 2021
1 parent 2280295 commit ec0d6f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/tests/experimental/coarsen_graph_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,12 +371,12 @@ class Tests_CoarsenGraph : public ::testing::TestWithParam<CoarsenGraph_Usecase>

// FIXME: add tests for type combinations

TEST_P(Tests_CoarsenGraph, CheckInt32Int32FloatFloatTransposed)
TEST_P(Tests_CoarsenGraph, CheckInt32Int32FloatTransposed)
{
run_current_test<int32_t, int32_t, float, true>(GetParam());
}

TEST_P(Tests_CoarsenGraph, CheckInt32Int32FloatFloatUntransposed)
TEST_P(Tests_CoarsenGraph, CheckInt32Int32FloatUntransposed)
{
run_current_test<int32_t, int32_t, float, false>(GetParam());
}
Expand Down

0 comments on commit ec0d6f4

Please sign in to comment.