Skip to content

Commit 3c91668

Browse files
clarify tests
1 parent c1d48ca commit 3c91668

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

enigma/src/test/java/org/quiltmc/enigma/util/multi_trie/CompositeStringMultiTrieTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class CompositeStringMultiTrieTest {
2424

2525
// test key-by-key put's orphan logic
2626
@Test
27-
void testPutKeyByKeyRootDown() {
27+
void testPutKeyByKeyFromRoot() {
2828
final CompositeStringMultiTrie<Integer> trie = CompositeStringMultiTrie.createHashed();
2929

3030
for (int depth = 0; depth < KEY_BY_KEY_SUBJECT.length(); depth++) {
@@ -41,8 +41,9 @@ void testPutKeyByKeyRootDown() {
4141
}
4242
}
4343

44+
// tests that key-by-key put's orphan logic propagates from stems to the root
4445
@Test
45-
void testPutKeyByKeyStemUp() {
46+
void testPutKeyByKeyFromStems() {
4647
final CompositeStringMultiTrie<Integer> trie = CompositeStringMultiTrie.createHashed();
4748

4849
for (int depth = KEY_BY_KEY_SUBJECT.length() - 1; depth >= 0; depth--) {

0 commit comments

Comments
 (0)