Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use correct regex
  • Loading branch information
pabender committed Jul 20, 2020
1 parent 393bb69 commit 482e80e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/test/jmri/configurexml/LoadAndStoreTestBase.java
Expand Up @@ -194,8 +194,8 @@ public static void checkFile(File inFile1, File inFile2) throws Exception {
line2 = filterLineUsingRegEx(line2, yposition_regexe);
// if either line contains an x position attribute
String xposition_regexe = "( x=\"[^\"]*\")";
line1 = filterLineUsingRegEx(line1, yposition_regexe);
line2 = filterLineUsingRegEx(line2, yposition_regexe);
line1 = filterLineUsingRegEx(line1, xposition_regexe);
line2 = filterLineUsingRegEx(line2, xposition_regexe);
}
}

Expand Down

0 comments on commit 482e80e

Please sign in to comment.