Move btree test

This commit is contained in:
2026-02-25 17:28:26 +11:00
parent 5c39d8add2
commit 044e516ed3

View File

@@ -1,5 +1,5 @@
import { describe, it, expect, beforeEach } from 'vitest'; import { describe, it, expect, beforeEach } from 'vitest';
import { BPlusTree } from './btree.js'; import { BPlusTree } from '../../src/utils/btree.js';
describe('BPlusTree', () => { describe('BPlusTree', () => {
let tree: BPlusTree<number, string>; let tree: BPlusTree<number, string>;