From 22953e6ab022afae18d9e7c90d0145f811b95e30 Mon Sep 17 00:00:00 2001 From: NissimHadar Date: Tue, 31 Jul 2018 13:48:17 -0700 Subject: [PATCH] Fixed appearance of dual tests. --- tools/auto-tester/src/TestRailInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/auto-tester/src/TestRailInterface.cpp b/tools/auto-tester/src/TestRailInterface.cpp index 9142e24986..49b497353f 100644 --- a/tools/auto-tester/src/TestRailInterface.cpp +++ b/tools/auto-tester/src/TestRailInterface.cpp @@ -241,7 +241,7 @@ void TestRailInterface::processDirectoryPython(const QString& directory, // Now we push the parent_id, and recursively process each directory stream << "parent_ids.push(section['id'])\n\n"; processDirectoryPython(nextDirectory, stream, userGitHub, branchGitHub); - } else if (objectName == "test.js" || objectName == "testStory.js") { + } else if (objectName == "test.js") { processTestPython(nextDirectory, stream, userGitHub, branchGitHub); } }