Skip to content

Commit 66f599b

Browse files
committed
fix mock
1 parent 07385a4 commit 66f599b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/managers/builtin/helpers.shouldUseUv.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ suite('Helpers - shouldUseUv', () => {
152152
getUvEnvironmentsStub.resolves([]);
153153

154154
// Run
155-
const result = await shouldUseUv(mockLog);
155+
const result = await helpers.shouldUseUv(mockLog);
156156

157157
// Assert - Should return true with default setting when UV is installed
158158
assert.strictEqual(result, true);
@@ -164,7 +164,7 @@ suite('Helpers - shouldUseUv', () => {
164164
getUvEnvironmentsStub.resolves([]);
165165

166166
// Run
167-
const result = await shouldUseUv(mockLog);
167+
const result = await helpers.shouldUseUv(mockLog);
168168

169169
// Assert - Should not use UV when setting is false
170170
assert.strictEqual(result, false);

0 commit comments

Comments
 (0)