Skip to content

Commit 7fe602c

Browse files
minor fix in path of testing file (#18)
## Description Fixed the path of the local testing file given the change in directories from a previous PR. ## Type of change - [x] Bug fix - [ ] New feature - [ ] Documentation update - [ ] Code refactoring ## How Has This Been Tested? App.test now runs in the directory
1 parent ce49bed commit 7fe602c

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

latte/src/main/java/api/App.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,9 @@ public class App {
2626
* @param args
2727
*/
2828
public static void main( String[] args ){
29-
3029
if (args.length == 0) {
31-
System.out.println("Please enter the path to the file you want to process");
32-
String allPath = "latte/src/main/java/examples/MyStackTest.java";
33-
launcher(allPath, true);
30+
String allPath = "src/main/java/examples/MyStackTest.java";
31+
launcher(allPath, false);
3432

3533
} else if (args.length == 1 && args[0].equals("-multi")) {
3634
// Analyze multiple files from command line

0 commit comments

Comments
 (0)