Skip to content

Commit d61e382

Browse files
committed
Grunt: Fix lint errors
1 parent ca38a94 commit d61e382

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ module.exports = function(grunt) {
134134
testswarm.createClient( {
135135
url: config.swarmUrl,
136136
pollInterval: 10000,
137-
timeout: 1000 * 60 * 30,
137+
timeout: 1000 * 60 * 30
138138
} )
139139
.addReporter( testswarm.reporters.cli )
140140
.auth( {
141141
id: config.authUsername,
142142
token: config.authToken
143-
} )
143+
})
144144
.addjob(
145145
{
146146
name: jobName,
@@ -153,7 +153,7 @@ module.exports = function(grunt) {
153153
}
154154
done( passed );
155155
}
156-
)
156+
);
157157
});
158158

159159
// Update manifest for jQuery plugin registry

0 commit comments

Comments
 (0)