From e0b47349171b604f634fa51dd8fa3253db73236b Mon Sep 17 00:00:00 2001 From: sabrina-shanman Date: Mon, 26 Aug 2019 14:37:37 -0700 Subject: [PATCH] Add missing bullet point when test.md step has image with unknown test filter --- tools/nitpick/src/TestCreator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nitpick/src/TestCreator.cpp b/tools/nitpick/src/TestCreator.cpp index e6a3224cf7..652292b9dc 100644 --- a/tools/nitpick/src/TestCreator.cpp +++ b/tools/nitpick/src/TestCreator.cpp @@ -817,7 +817,7 @@ bool TestCreator::createMDFile(const QString& directory) { stream << ":"; } else { // Fall back to displaying file name - stream << "ExpectedImage" << testDescriptor << "_" << QString::number(snapShotIndex).rightJustified(5, '0') << ".png"; + stream << "- ExpectedImage" << testDescriptor << "_" << QString::number(snapShotIndex).rightJustified(5, '0') << ".png"; } stream << "\n"; stream << "- ![](./ExpectedImage" << testDescriptor << "_" << QString::number(snapShotIndex).rightJustified(5, '0') << ".png)\n";