Skip to content

Commit

Permalink
Fixed linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronius committed Dec 15, 2017
1 parent 775bd1e commit 95be973
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/__tests__/buildRuleExecutionOrder.test.js
Expand Up @@ -17,11 +17,11 @@ describe('buildRuleExecutionOrder', function() {
var ruleA = {
events: [
{
"modulePath": "event1.js",
modulePath: 'event1.js',
ruleOrder: 100
},
{
"modulePath": "event2.js",
modulePath: 'event2.js',
ruleOrder: 200
}
]
Expand All @@ -30,11 +30,11 @@ describe('buildRuleExecutionOrder', function() {
var ruleB = {
events: [
{
"modulePath": "event1.js",
modulePath: 'event1.js',
ruleOrder: 200
},
{
"modulePath": "event2.js",
modulePath: 'event2.js',
ruleOrder: 100
}
]
Expand Down Expand Up @@ -73,23 +73,23 @@ describe('buildRuleExecutionOrder', function() {
var ruleA = {
events: [
{
"modulePath": "event1.js"
modulePath: 'event1.js'
}
]
};

var ruleB = {
events: [
{
"modulePath": "event1.js"
modulePath: 'event1.js'
}
]
};

var ruleC = {
events: [
{
"modulePath": "event1.js"
modulePath: 'event1.js'
}
]
};
Expand Down

0 comments on commit 95be973

Please sign in to comment.