Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
colanconnon committed Oct 19, 2016
1 parent e96bc83 commit e70cd64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/CreateCommandTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
let expect = require('chai').expect;
let DepGraph = require('dependency-graph').DepGraph;

let CreateCommand = require('../src/CreateCommand').CreateCommand;
let CreateCommand = require('../src/CreateCommand');

describe('Create command tests', () => {
it('should write results from driver to file', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/DriverLocatorTest.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let expect = require('chai').expect;
let fs = require('fs');
let mockeryPartial = require('mockery-partial');
let DriverLocator = require('../src/DriverLocator').DriverLocator;
let DriverLocator = require('../src/DriverLocator');
let ContactDriver = require('./MockDrivers/ContactDriver').ContactDriver;
let EventDriver = require('./MockDrivers/EventDriver').EventDriver;

Expand Down

0 comments on commit e70cd64

Please sign in to comment.