Skip to content

Commit

Permalink
translate: fix system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Oct 4, 2016
1 parent d8ea01a commit 3e9df0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/translate/system-test/translate.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ var API_KEY = process.env.GCLOUD_TESTS_API_KEY;
describe('detecting language from input', function() {
var INPUT = [
{
input: 'Hello',
input: 'Hello!',
expectedLanguage: 'en'
},
{
input: 'Hola',
input: '¡Hola!',
expectedLanguage: 'es'
}
];
Expand All @@ -61,8 +61,8 @@ var API_KEY = process.env.GCLOUD_TESTS_API_KEY;
describe('translations', function() {
var INPUT = [
{
input: 'Hello',
expectedTranslation: 'Hola'
input: 'Hello!',
expectedTranslation: '¡Hola!'
},
{
input: 'How are you today?',
Expand Down

0 comments on commit 3e9df0c

Please sign in to comment.