FIX: The build; ran prettier (#8412)

This commit is contained in:
Mark VanLandingham 2019-11-25 12:12:44 -06:00 committed by GitHub
parent b92a8131c0
commit a3157f0e38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 3 deletions

View File

@ -101,7 +101,10 @@ test("pollMinOptions", function(assert) {
assert.deepEqual(
controller.get("pollMinOptions"),
[{ name: 1, value: 1 }, { name: 2, value: 2 }],
[
{ name: 1, value: 1 },
{ name: 2, value: 2 }
],
"it should return the right options"
);
@ -110,7 +113,10 @@ test("pollMinOptions", function(assert) {
assert.deepEqual(
controller.get("pollMinOptions"),
[{ name: 1, value: 1 }, { name: 2, value: 2 }],
[
{ name: 1, value: 1 },
{ name: 2, value: 2 }
],
"it should return the right options"
);
});
@ -177,7 +183,11 @@ test("pollStepOptions", function(assert) {
assert.deepEqual(
controller.get("pollStepOptions"),
[{ name: 1, value: 1 }, { name: 2, value: 2 }, { name: 3, value: 3 }],
[
{ name: 1, value: 1 },
{ name: 2, value: 2 },
{ name: 3, value: 3 }
],
"it should return the right options"
);
});