From ffe9e98616eaa260e113d0b75cf6bd4fbc070094 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Tue, 22 Oct 2019 15:19:31 +0200 Subject: [PATCH] Fix #81: Lower-casing of PHPT file names can break tests --- src/com/mostc/pftt/model/core/PhptTestCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/mostc/pftt/model/core/PhptTestCase.java b/src/com/mostc/pftt/model/core/PhptTestCase.java index 2f323eb9..b037991c 100644 --- a/src/com/mostc/pftt/model/core/PhptTestCase.java +++ b/src/com/mostc/pftt/model/core/PhptTestCase.java @@ -355,13 +355,13 @@ public PhptTestCase(PhptSourceTestPack test_pack, String name) { section_text = new HashMap(); } - /** makes the test case name standard (all lowercase and using / and never \\) + /** makes the test case name standard (using / and never \\) * * @param name * @return */ public static String normalizeTestCaseName(String name) { - return FileSystemScenario.toUnixPath(name).toLowerCase(); + return FileSystemScenario.toUnixPath(name); } public PhptSourceTestPack getTestPack() {