Skip to content

Commit

Permalink
fix ASSERT_TRUE usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooo-create committed Jan 27, 2025
1 parent c02c4b6 commit b81e74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cpp/pir/shape_dialect/simplify_dim_expr_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ TEST(Simplify, FoldRedundantBroadcast) {
DimExpr S1{"S1"};
DimExpr bc{Broadcast<DimExpr>{{S0, S0, S1, S1}}};
DimExpr simplify_bc = SimplifyDimExpr(bc);
ASSERT_TRUE(simplify_bc == Broadcast<DimExpr>{{S0, S1}});
ASSERT_TRUE((simplify_bc == Broadcast<DimExpr>{{S0, S1}}));
}

TEST(Simplify, Case1) {
Expand Down

0 comments on commit b81e74c

Please sign in to comment.