Skip to content

Commit ff33639

Browse files
authored
Merge branch 'main' into fix/review-skill-conflict-guidance
2 parents 3199092 + 2607ec6 commit ff33639

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/db.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ describe('findDbPath with git ceiling', () => {
326326
// existence, suffix, and that it's not the outer directory's DB.
327327
expect(fs.existsSync(result)).toBe(true);
328328
expect(result).toMatch(/\.codegraph[/\\]graph\.db$/);
329-
expect(result).not.toContain(path.basename(outerDir) + path.sep + '.codegraph');
329+
expect(result).not.toContain(`${path.basename(outerDir)}${path.sep}.codegraph`);
330330
} finally {
331331
process.cwd = origCwd;
332332
fs.rmSync(path.join(worktreeRoot, '.codegraph'), { recursive: true, force: true });

0 commit comments

Comments
 (0)