Skip to content

Commit 5b94db0

Browse files
committed
LLVMTypeAnalyzer: Fix some test case names
1 parent 54400de commit 5b94db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/llvm/type_analyzer/variabletype_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ TEST(LLVMTypeAnalyzer_VariableType, OverrideUnknownTypeBeforeLoop)
783783
ASSERT_EQ(analyzer.variableType(&varPtr, funcCall.get(), Compiler::StaticType::Unknown), Compiler::StaticType::Number);
784784
}
785785

786-
TEST(LLVMTypeAnalyzer_VariableTypeChangesInBranch, WriteSameTypeInIfStatement)
786+
TEST(LLVMTypeAnalyzer_VariableType, WriteSameTypeInIfStatement)
787787
{
788788
LLVMTypeAnalyzer analyzer;
789789
LLVMInstructionList list;
@@ -809,7 +809,7 @@ TEST(LLVMTypeAnalyzer_VariableTypeChangesInBranch, WriteSameTypeInIfStatement)
809809
ASSERT_EQ(analyzer.variableType(&varPtr, funcCall.get(), Compiler::StaticType::Number), Compiler::StaticType::Number);
810810
}
811811

812-
TEST(LLVMTypeAnalyzer_VariableTypeChangesInBranch, WriteDifferentTypeInIfStatement)
812+
TEST(LLVMTypeAnalyzer_VariableType, WriteDifferentTypeInIfStatement)
813813
{
814814
LLVMTypeAnalyzer analyzer;
815815
LLVMInstructionList list;

0 commit comments

Comments
 (0)