Add newline after warning about not running obj-c tests

This commit is contained in:
Jacob Dufault 2018-01-03 18:06:32 -08:00
parent 2a17f66792
commit f5f3887dd3

View File

@ -128,7 +128,7 @@ void RunIndexTests(const std::string& filter_path) {
true /*add_folder_to_path*/)) {
if (!RunObjectiveCIndexTests() && EndsWithAny(path, {".m", ".mm"})) {
std::cout << "Skipping \"" << path << "\" since this platform does not "
<< "support running Objective-C tests.";
<< "support running Objective-C tests." << std::endl;
continue;
}