Skip to content

Commit f7f917a

Browse files
committed
Apply clang-tidy fixes for readability-identifier-naming in MergerTest.cpp (NFC)
1 parent 2e9cd81 commit f7f917a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/unittests/Dialect/SparseTensor/MergerTest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,15 +420,15 @@ class MergerTest4T1LU : public MergerTestBase {
420420
/// Tests with operation on sparse output.
421421
///
422422

423-
class MergerTest3T1L_SO : public MergerTestBase {
423+
class MergerTest3T1LSo : public MergerTestBase {
424424
protected:
425425
// Our three tensors (two inputs, one output, one synthetic).
426426
const unsigned t0 = 0, t1 = 1, t2 = 2, t3 = 3;
427427

428428
// Our single loop.
429429
const unsigned l0 = 0;
430430

431-
MergerTest3T1L_SO() : MergerTestBase(3, 1) {
431+
MergerTest3T1LSo() : MergerTestBase(3, 1) {
432432
EXPECT_TRUE(merger.getOutTensorID() == t2);
433433
EXPECT_TRUE(merger.getSynTensorID() == t3);
434434

@@ -494,7 +494,7 @@ FOREVERY_PAIR_OF_COMMON_CONJ_CONJ_BINOP(IMPL_MERGER_TEST_CONJ_CONJ_UNDEF)
494494
/// lat( i_03_U / (tensor_0 * tensor_1 * output_tensor2) )
495495
/// }
496496
#define IMPL_MERGER_TEST_CONJ_CONJ_SPARSE_OUT(CONJ1, CONJ2) \
497-
TEST_F(MergerTest3T1L_SO, vector_##CONJ1##_##CONJ2) { \
497+
TEST_F(MergerTest3T1LSo, vector_##CONJ1##_##CONJ2) { \
498498
auto em = CONJ1##Expr(t0, t1); \
499499
auto e = CONJ2##Expr(em, t2); \
500500
auto p0 = tensorPattern(t0); \

0 commit comments

Comments
 (0)