Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
colanconnon committed Nov 9, 2016
1 parent 2d06f1a commit b755b30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/TearDownCommandTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ describe('Tear down command tests', () => {
let drivers = {};

fsMock({
'seededData.json': JSON.stringify([
'seededData.json': JSON.stringify([ { "data": [
{
"type": "herpderp",
"properties": {
"name": "Bob Dole"
}
}
])
]}])
});

let driverLocator = {
Expand Down Expand Up @@ -87,7 +87,7 @@ describe('Tear down command tests', () => {
};

fsMock({
'path/to/seed.json': JSON.stringify([
'path/to/seed.json': JSON.stringify([{"data" : [
{
"type": "contact",
"properties": {
Expand All @@ -102,7 +102,7 @@ describe('Tear down command tests', () => {
]
}
}
])
]}])
});

let tearDownCommand = new TearDownCommand(
Expand Down

0 comments on commit b755b30

Please sign in to comment.