Skip to content

Commit 34afb44

Browse files
author
Robert Jackson
committed
Fix indentation issue in deprecation collector assertions.
1 parent 5d9bb4b commit 34afb44

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

tests/unit/deprecation-collector-test.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ module("deprecation collector", function(hooks) {
2525
deprecate('Second deprecation', false, { id: 'second', until: 'forever' });
2626
let deprecationsPayload = self.deprecationWorkflow.flushDeprecations();
2727
assert.equal(deprecationsPayload, `self.deprecationWorkflow = self.deprecationWorkflow || {};
28-
self.deprecationWorkflow.config = {
29-
workflow: [
30-
{ handler: "silence", matchId: "first" },
31-
{ handler: "silence", matchId: "second" }
32-
]
33-
};`);
28+
self.deprecationWorkflow.config = {
29+
workflow: [
30+
{ handler: "silence", matchId: "first" },
31+
{ handler: "silence", matchId: "second" }
32+
]
33+
};`);
3434
});
3535

3636
if (!hasEmberVersion(3,0)) {
@@ -50,12 +50,12 @@ module("deprecation collector", function(hooks) {
5050

5151
let deprecationsPayload = self.deprecationWorkflow.flushDeprecations();
5252
assert.equal(deprecationsPayload, `self.deprecationWorkflow = self.deprecationWorkflow || {};
53-
self.deprecationWorkflow.config = {
54-
workflow: [
55-
{ handler: "silence", matchId: "first" },
56-
{ handler: "silence", matchId: "second" }
57-
]
58-
};`);
53+
self.deprecationWorkflow.config = {
54+
workflow: [
55+
{ handler: "silence", matchId: "first" },
56+
{ handler: "silence", matchId: "second" }
57+
]
58+
};`);
5959
});
6060

6161
if (!hasEmberVersion(3,0)) {

0 commit comments

Comments
 (0)