Skip to content

Commit ebee09e

Browse files
committed
Debug test
1 parent cd55f5d commit ebee09e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
strategy:
1515
matrix:
16-
os: [windows-latest]
16+
os: [macos-latest, windows-latest]
1717
jdk: [11, 17, 21]
1818
fail-fast: false
1919
runs-on: ${{ matrix.os }}

src/test/java/engineering/swat/watch/SingleDirectoryTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ void indexingRescanOnOverflow() throws IOException, InterruptedException {
202202
new WatchEvent(DELETED, directory, Path.of("c.txt")),
203203
new WatchEvent(CREATED, directory, Path.of("d.txt"))
204204
}) {
205-
await("Overflow should trigger event: " + e)
205+
await("Overflow should trigger event: " + e + " --- " + bookkeeper)
206206
.until(() -> bookkeeper.events().any(e));
207207
}
208208

@@ -218,7 +218,7 @@ void indexingRescanOnOverflow() throws IOException, InterruptedException {
218218
new WatchEvent(CREATED, directory, Path.of("c.txt")),
219219
new WatchEvent(DELETED, directory, Path.of("d.txt"))
220220
}) {
221-
await("File operation should trigger event: " + e)
221+
await("File operation should trigger event: " + e + " --- " + bookkeeper)
222222
.until(() -> bookkeeper.events().any(e));
223223
}
224224

0 commit comments

Comments
 (0)