Skip to content

Commit e4c0f4a

Browse files
authored
[NFC] fix typo in clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp (llvm#90606)
1 parent adabdc1 commit e4c0f4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ TEST(ExprMutationAnalyzerTest, CastToConstRef) {
11761176

11771177
// section: comma expressions
11781178

1179-
TEST(ExprMutationAnalyzerTest, CommaExprWithAnAssigment) {
1179+
TEST(ExprMutationAnalyzerTest, CommaExprWithAnAssignment) {
11801180
const auto AST = buildASTFromCodeWithArgs(
11811181
"void f() { int x; int y; (x, y) = 5; }", {"-Wno-unused-value"});
11821182
const auto Results =
@@ -1267,7 +1267,7 @@ TEST(ExprMutationAnalyzerTest, CommaExprAsReturnAsValue) {
12671267
EXPECT_FALSE(isMutated(Results, AST.get()));
12681268
}
12691269

1270-
TEST(ExprMutationAnalyzerTest, CommaEpxrAsReturnAsNonConstRef) {
1270+
TEST(ExprMutationAnalyzerTest, CommaExprAsReturnAsNonConstRef) {
12711271
const auto AST = buildASTFromCodeWithArgs(
12721272
"int& f() { int x, y; return (y, x); }", {"-Wno-unused-value"});
12731273
const auto Results =

0 commit comments

Comments
 (0)