Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 610d518

Browse files
author
mikkomaa
committed
Merge pull request #191 from tmc-cli/run-tests-subfolder-bug-fix-juha
Do not replace hyphen with fileseparator
2 parents cf58ac4 + 5734e79 commit 610d518

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/fi/helsinki/cs/tmc/cli/command/RunTestsCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void run(String[] args, Io io) {
7676
try {
7777
for (String name : exerciseNames) {
7878
io.println(Color.colorString("Testing: " + name, Color.ANSI_YELLOW));
79-
name = name.replace("-", File.separator);
79+
//name = name.replace("-", File.separator);
8080
Exercise exercise = new Exercise(name, courseName);
8181

8282
runResult = core.runTests(new TmcCliProgressObserver(), exercise).call();

0 commit comments

Comments
 (0)