Skip to content

Commit 119833e

Browse files
committed
Fix format
1 parent d01f75f commit 119833e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/unittests/ObjectFile/MachO/TestObjectFileMachO.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ TEST_F(ObjectFileMachOTest, ObjectFileFormatWithoutLoadCommand) {
136136
reserved3: 0x00000000
137137
...
138138
)";
139-
139+
140140
// Perform setup.
141141
llvm::Expected<TestFile> file = TestFile::fromYaml(yamldata);
142142
EXPECT_THAT_EXPECTED(file, llvm::Succeeded());
@@ -146,6 +146,7 @@ TEST_F(ObjectFileMachOTest, ObjectFileFormatWithoutLoadCommand) {
146146
ASSERT_NE(object_file, nullptr);
147147

148148
// Verify that the object file is recognized as Mach-O.
149-
ASSERT_EQ(object_file->GetArchitecture().GetTriple().getObjectFormat(), llvm::Triple::MachO);
149+
ASSERT_EQ(object_file->GetArchitecture().GetTriple().getObjectFormat(),
150+
llvm::Triple::MachO);
150151
}
151152
#endif

0 commit comments

Comments
 (0)