Skip to content

Commit 2bcb54d

Browse files
committed
Fix typo.
1 parent 8ab74e1 commit 2bcb54d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/web/10-api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('QR Codes', function() {
1010
// check if BarcodeDetector is supported
1111
const {BarcodeDetector} = globalThis;
1212
if(!BarcodeDetector) {
13-
console.warning('Barcode Detector is not supported.');
13+
console.warn('Barcode Detector is not supported.');
1414
this.skip();
1515
return;
1616
}
@@ -49,7 +49,7 @@ describe.only('PDF417', function() {
4949
// check if BarcodeDetector is supported
5050
const {BarcodeDetector} = globalThis;
5151
if(!BarcodeDetector) {
52-
console.warning('Barcode Detector is not supported.');
52+
console.warn('Barcode Detector is not supported.');
5353
this.skip();
5454
return;
5555
}

0 commit comments

Comments
 (0)