Skip to content

Commit

Permalink
ASTDiff: Fix the test file names containing .java
Browse files Browse the repository at this point in the history
  • Loading branch information
pouryafard75 committed Apr 1, 2024
1 parent 22707d0 commit 59491df
Show file tree
Hide file tree
Showing 297 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static String getSnapShotPath(String path){

public static String getFileNameFromSrcDiff(String astSrcName)
{
String exportName1 = astSrcName.replace("/",".").replace(".java","");
String exportName1 = astSrcName.replace(".java","").replace("/",".");
return exportName1 + JSON_SUFFIX;
}
public static String getSrcASTDiffFromFile(String astSrcName)
Expand Down
Loading

0 comments on commit 59491df

Please sign in to comment.