Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/com/mostc/pftt/model/core/PhptTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -355,13 +355,13 @@ public PhptTestCase(PhptSourceTestPack test_pack, String name) {
section_text = new HashMap<EPhptSection,String>();
}

/** 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() {
Expand Down