We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfba3b6 commit a805222Copy full SHA for a805222
eo-maven-plugin/src/test/java/org/eolang/maven/WalkTest.java
@@ -24,12 +24,10 @@ final class WalkTest {
24
25
@Test
26
void findsFilesMatchingGlobPattern(@Mktmp final Path temp) throws Exception {
27
- final String nonmatch = "foo/hello/0.1/EObar/x.bin";
28
- final String match = "EOxxx/bar";
+ new Saved("", temp.resolve("foo/hello/0.1/EObar/x.bin")).value();
+ new Saved("", temp.resolve("EOxxx/bar")).value();
29
final String pattern = "EO**/*";
30
final int count = 1;
31
- new HmBase(temp).save("", Paths.get(nonmatch));
32
- new HmBase(temp).save("", Paths.get(match));
33
MatcherAssert.assertThat(
34
String.format(
35
"Expected %d file(s) matching pattern '%s'",
0 commit comments