Skip to content

Commit

Permalink
Change stubs to spies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ace Nassri committed Aug 8, 2016
1 parent d185b49 commit 0c55c13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bigquery/system-test/list_datasets_and_projects.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
'use strict';

var example = require('../list_datasets_and_projects');
sinon.stub(example, 'printUsage');
sinon.stub(example, 'listDatasets');
sinon.stub(example, 'listProjects');
sinon.spy(example, 'printUsage');
sinon.spy(example, 'listDatasets');
sinon.spy(example, 'listProjects');

describe('bigquery:list_datasets_and_projects', function () {
describe('main', function () {
Expand Down

0 comments on commit 0c55c13

Please sign in to comment.