File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ module.exports = {
50
50
return {
51
51
name : options . name ,
52
52
53
- willDeploy : function ( context ) {
53
+ configure : function ( context ) {
54
54
var deployment = context . deployment ;
55
55
var ui = deployment . ui ;
56
56
var config = deployment . config [ this . name ] = deployment . config [ this . name ] || { } ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ describe('redis plugin', function() {
24
24
name : 'test-plugin'
25
25
} ) ;
26
26
27
- assert . equal ( typeof result . willDeploy , 'function' ) ;
27
+ assert . equal ( typeof result . configure , 'function' ) ;
28
28
assert . equal ( typeof result . upload , 'function' ) ;
29
29
} ) ;
30
30
@@ -51,7 +51,7 @@ describe('redis plugin', function() {
51
51
}
52
52
} ;
53
53
54
- return assert . isFulfilled ( plugin . willDeploy . call ( plugin , context ) )
54
+ return assert . isFulfilled ( plugin . configure . call ( plugin , context ) )
55
55
} ) ;
56
56
} ) ;
57
57
You can’t perform that action at this time.
0 commit comments