This is an automated email from the ASF dual-hosted git repository.
gian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 8b5533b2c7e RegularLoadableSegmentTest: Update one more check. (#18912)
8b5533b2c7e is described below
commit 8b5533b2c7e2f68867321f8c892808e00fb67ed0
Author: Gian Merlino <[email protected]>
AuthorDate: Tue Jan 13 08:26:10 2026 -0800
RegularLoadableSegmentTest: Update one more check. (#18912)
Missed one in #18908.
---
.../java/org/apache/druid/msq/input/RegularLoadableSegmentTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/multi-stage-query/src/test/java/org/apache/druid/msq/input/RegularLoadableSegmentTest.java
b/multi-stage-query/src/test/java/org/apache/druid/msq/input/RegularLoadableSegmentTest.java
index 50a21969ea1..4bf712811de 100644
---
a/multi-stage-query/src/test/java/org/apache/druid/msq/input/RegularLoadableSegmentTest.java
+++
b/multi-stage-query/src/test/java/org/apache/druid/msq/input/RegularLoadableSegmentTest.java
@@ -343,7 +343,7 @@ class RegularLoadableSegmentTest extends
InitializedNullHandlingTest
// Cache dir should exist, but be (mostly) empty, since we've dropped all
segments.
Assertions.assertTrue(preLoadCacheDir.exists());
- Assertions.assertEquals(List.of("info_dir", "__drop"),
Arrays.asList(preLoadCacheDir.list()));
+ Assertions.assertEquals(Set.of("info_dir", "__drop"),
Set.of(preLoadCacheDir.list()));
Assertions.assertEquals(Collections.emptyList(), Arrays.asList(new
File(preLoadCacheDir, "__drop").list()));
Assertions.assertEquals(Collections.emptyList(), Arrays.asList(new
File(preLoadCacheDir, "info_dir").list()));
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]