@@ -29,7 +29,7 @@ public void ProvidesVariablesInContinuousDeliveryModeForPreRelease()
2929
3030 var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
3131
32- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
32+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
3333 }
3434
3535 [ Test ]
@@ -54,7 +54,7 @@ public void ProvidesVariablesInContinuousDeliveryModeForPreReleaseWithPadding()
5454
5555 var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
5656
57- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
57+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
5858 }
5959
6060 [ Test ]
@@ -78,7 +78,7 @@ public void ProvidesVariablesInContinuousDeploymentModeForPreRelease()
7878
7979 var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
8080
81- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
81+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
8282 }
8383
8484 [ Test ]
@@ -101,7 +101,7 @@ public void ProvidesVariablesInContinuousDeliveryModeForStable()
101101
102102 var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
103103
104- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
104+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
105105 }
106106
107107 [ Test ]
@@ -124,7 +124,7 @@ public void ProvidesVariablesInContinuousDeploymentModeForStable()
124124
125125 var vars = VariableProvider . GetVariablesFor ( semVer , config , false ) ;
126126
127- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
127+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
128128 }
129129
130130 [ Test ]
@@ -150,6 +150,6 @@ public void ProvidesVariablesInContinuousDeploymentModeForStableWhenCurrentCommi
150150
151151 var vars = VariableProvider . GetVariablesFor ( semVer , config , true ) ;
152152
153- JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( ) ;
153+ JsonOutputFormatter . ToJson ( vars ) . ShouldMatchApproved ( c => c . SubFolder ( "Approved" ) ) ;
154154 }
155155}
0 commit comments