Skip to content

Commit

Permalink
fix: corrected test
Browse files Browse the repository at this point in the history
  • Loading branch information
novoj committed Apr 15, 2024
1 parent 0d885e0 commit 11fe65b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public class EvitaTransactionalFunctionalTest implements EvitaTestSupport {
return primaryKey == 0 ? null : primaryKey;
};
private static final Pattern DATE_TIME_PATTERN_1 = Pattern.compile("\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}");
private static final Pattern DATE_TIME_PATTERN_2 = Pattern.compile("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$");
private static final Pattern DATE_TIME_PATTERN_2 = Pattern.compile("\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+Z");
private static final Pattern LAG_PATTERN = Pattern.compile("lag \\d*m?s");
public static final String REPLACED_OFFSET_DATE_TIME = "REPLACED_OFFSET_DATE_TIME";
private final DataGenerator dataGenerator = new DataGenerator();
Expand Down

0 comments on commit 11fe65b

Please sign in to comment.