@@ -29,7 +29,7 @@ public void ProvidesVariablesInContinuousDeliveryModeForPreRelease()
29
29
30
30
var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
31
31
32
- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
32
+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
33
33
}
34
34
35
35
[ Test ]
@@ -54,7 +54,7 @@ public void ProvidesVariablesInContinuousDeliveryModeForPreReleaseWithPadding()
54
54
55
55
var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
56
56
57
- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
57
+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
58
58
}
59
59
60
60
[ Test ]
@@ -78,7 +78,7 @@ public void ProvidesVariablesInContinuousDeploymentModeForPreRelease()
78
78
79
79
var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
80
80
81
- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
81
+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
82
82
}
83
83
84
84
[ Test ]
@@ -101,7 +101,7 @@ public void ProvidesVariablesInContinuousDeliveryModeForStable()
101
101
102
102
var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
103
103
104
- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
104
+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
105
105
}
106
106
107
107
[ Test ]
@@ -124,7 +124,7 @@ public void ProvidesVariablesInContinuousDeploymentModeForStable()
124
124
125
125
var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
126
126
127
- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
127
+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
128
128
}
129
129
130
130
[ Test ]
@@ -150,6 +150,6 @@ public void ProvidesVariablesInContinuousDeploymentModeForStableWhenCurrentCommi
150
150
151
151
var vars = VariableProvider . GetVariablesFor ( semVer , config , true ) ;
152
152
153
- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
153
+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
154
154
}
155
155
}
0 commit comments