Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/vision/system-test/vision.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,15 +522,18 @@ describe('Vision', function() {
describe('text', function() {
var expectedResults = [
normalizeNewline(multiline.stripIndent(function() {/*
Google Cloud Client Library for Node.js an idiomatic, intuitive, and
Google Cloud Client Library for Node js an idiomatic, intuitive, and
natural way for Node.js developers to integrate with Google Cloud
Platform services, like Cloud Datastore and Cloud Storage.

*/}))
];

expectedResults = expectedResults.concat(
expectedResults[0].replace(/\n/g, ' ').trim().split(' ')
expectedResults[0]
.replace(/\n/g, ' ')
.trim()
.split(' ')
);

expectedResults.errors = [];
Expand Down