Skip to content

Commit

Permalink
tests: correct system tests for envs without projectId
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Mar 17, 2017
1 parent a556787 commit ef5d3bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions system-test/bigquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ describe('BigQuery', function() {
};

var improperData = {
name: 11
name: true
};

table.insert([data, improperData], function(err) {
Expand All @@ -516,7 +516,7 @@ describe('BigQuery', function() {
assert.deepEqual(err.errors[0], {
errors: [
{
message: 'Conversion from int64 to string is unsupported.',
message: 'Conversion from bool to string is unsupported.',
reason: 'invalid'
}
],
Expand All @@ -526,7 +526,7 @@ describe('BigQuery', function() {
assert.deepEqual(err.errors[1], {
errors: [
{
message: undefined,
message: '',
reason: 'stopped'
}
],
Expand Down

0 comments on commit ef5d3bc

Please sign in to comment.