Skip to content

Commit 3913484

Browse files
committed
fix: error message
1 parent c080ff0 commit 3913484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bindings/utils/testBindingBinary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ if (process.env.TEST_BINDING_CP === "true" && (process.parentPort != null || pro
203203
const gpuType = binding.getGpuType();
204204
void (gpuType as BuildGpu satisfies typeof gpuType);
205205
if (gpuType !== message.gpu)
206-
throw new Error(`GPU type mismatch. Expected: ${message.gpu}, got: ${gpuType}`);
206+
throw new Error(`Binary GPU type mismatch. Expected: ${message.gpu}, got: ${gpuType}`);
207207

208208
sendMessage({type: "done"});
209209
} catch (err) {

0 commit comments

Comments
 (0)