Skip to content

Commit

Permalink
tests: vision: Node.js -> Node js (#1617)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus authored and callmehiphop committed Sep 23, 2016
1 parent 11be265 commit 0edb4d5
Showing 1 changed file with 5 additions and 2 deletions.
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

0 comments on commit 0edb4d5

Please sign in to comment.