Skip to content

Commit 6260522

Browse files
committed
Formatting
1 parent 6ada430 commit 6260522

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/unittests/Core/PluginManagerTest.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ TEST_F(PluginManagerTest, JsonFormat) {
426426

427427
// We should have a "system-runtime" array in the top-level object.
428428
llvm::json::Array *maybe_array = obj.getArray("system-runtime");
429-
ASSERT_TRUE(maybe_array!= nullptr);
429+
ASSERT_TRUE(maybe_array != nullptr);
430430
auto &array = *maybe_array;
431431
ASSERT_EQ(array.size(), 3u);
432432

@@ -460,7 +460,8 @@ TEST_F(PluginManagerTest, JsonFormat) {
460460
ASSERT_TRUE(array[1].getAsObject()->getString("name") == "c");
461461

462462
// Filtering the JSON output should only include the matching plugins.
463-
array = *PluginManager::GetJSON("system-runtime.c").getArray("system-runtime");
463+
array =
464+
*PluginManager::GetJSON("system-runtime.c").getArray("system-runtime");
464465
ASSERT_EQ(array.size(), 1u);
465466
ASSERT_TRUE(array[0].getAsObject()->getString("name") == "c");
466467

0 commit comments

Comments
 (0)