We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11be265 commit 0edb4d5Copy full SHA for 0edb4d5
packages/vision/system-test/vision.js
@@ -522,15 +522,18 @@ describe('Vision', function() {
522
describe('text', function() {
523
var expectedResults = [
524
normalizeNewline(multiline.stripIndent(function() {/*
525
- Google Cloud Client Library for Node.js an idiomatic, intuitive, and
+ Google Cloud Client Library for Node js an idiomatic, intuitive, and
526
natural way for Node.js developers to integrate with Google Cloud
527
Platform services, like Cloud Datastore and Cloud Storage.
528
529
*/}))
530
];
531
532
expectedResults = expectedResults.concat(
533
- expectedResults[0].replace(/\n/g, ' ').trim().split(' ')
+ expectedResults[0]
534
+ .replace(/\n/g, ' ')
535
+ .trim()
536
+ .split(' ')
537
);
538
539
expectedResults.errors = [];
0 commit comments