File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments