Skip to content

Commit 0bfe855

Browse files
committed
fix(system-test): remove left over toLowerCase()
1 parent 23ce3ca commit 0bfe855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vision/system-test/quickstart.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ describe('quickstart', () => {
2424
it('should detect labels in a remote file', async () => {
2525
const stdout = execSync('node quickstart.js');
2626
assert.match(stdout, /Labels:/);
27-
assert.match(stdout.toLowerCase(), /cat/i);
27+
assert.match(stdout, /cat/i);
2828
});
2929
});

0 commit comments

Comments
 (0)