Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom committed Jan 21, 2021
1 parent 9874644 commit 14934a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions docs/web/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ function loadDemo(key) {
editor.updateCode(demos[key]["code"]);
}

db.default({
list: [1, 2, 3],
string: "test",
numbers: 123,
objects: {
property: "test property"
}
db.default({
list: [1, 2, 3],
string: "test",
numbers: 123,
objects: {
property: "test property"
}
});
db.save();

Expand Down
2 changes: 1 addition & 1 deletion tests/localEngine.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe("Local Engine", function() {

db.save();

let savedData = fs.readFileSync("tempDB.stormdb", 'utf8');
let savedData = fs.readFileSync("tempDB.stormdb", "utf8");
assert.strictEqual(savedData, "serialized data");

deleteFile("tempDB.stormdb");
Expand Down

0 comments on commit 14934a0

Please sign in to comment.