File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
enigma/src/test/java/org/quiltmc/enigma/util/multi_trie Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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 --) {
You can’t perform that action at this time.
0 commit comments