@@ -13,7 +13,7 @@ public void CustomSettings()
1313 AtataContext . Configure ( ) .
1414 ApplyJsonConfig < CustomJsonConfig > ( @"Configs/CustomSettings.json" ) ;
1515
16- CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /" ) ;
16+ CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /" ) ;
1717 CustomJsonConfig . Current . IntProperty . Should ( ) . Be ( 5 ) ;
1818 CustomJsonConfig . Current . StringProperty . Should ( ) . Be ( "str" ) ;
1919 CustomJsonConfig . Current . BoolProperty . Should ( ) . Be ( true ) ;
@@ -46,7 +46,7 @@ public void CustomSettings_Merged()
4646 ApplyJsonConfig < CustomJsonConfig > ( @"Configs/CustomSettings.json" ) .
4747 ApplyJsonConfig < CustomJsonConfig > ( @"Configs/CustomSettingsOverride.json" ) ;
4848
49- CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /override" ) ;
49+ CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /override" ) ;
5050 CustomJsonConfig . Current . IntProperty . Should ( ) . Be ( 5 ) ;
5151 CustomJsonConfig . Current . StringProperty . Should ( ) . Be ( "str2" ) ;
5252 CustomJsonConfig . Current . BoolProperty . Should ( ) . Be ( true ) ;
@@ -90,8 +90,8 @@ public void CustomSettings_GlobalThenCurrent()
9090 ApplyJsonConfig < CustomJsonConfig > ( @"Configs/CustomSettingsOverride.json" ) .
9191 Build ( ) ;
9292
93- CustomJsonConfig . Global . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /" ) ;
94- CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /override" ) ;
93+ CustomJsonConfig . Global . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /" ) ;
94+ CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /override" ) ;
9595
9696 CustomJsonConfig . Global . StringProperty . Should ( ) . Be ( "str" ) ;
9797 CustomJsonConfig . Current . StringProperty . Should ( ) . Be ( "str2" ) ;
@@ -113,21 +113,21 @@ public void CustomSettings_GlobalThenCurrent()
113113
114114 try
115115 {
116- CustomJsonConfig . Global . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /" ) ;
116+ CustomJsonConfig . Global . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /" ) ;
117117
118- CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /override" ) ;
118+ CustomJsonConfig . Current . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /override" ) ;
119119 CustomJsonConfig . Current . StringProperty . Should ( ) . Be ( "str2" ) ;
120120 CustomJsonConfig . Current . StringListValues . Should ( ) . Equal ( new [ ] { "str1" , "str2" , "str3" , "str4" } ) ;
121121
122- parallelCustomJsonConfig . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /override2" ) ;
122+ parallelCustomJsonConfig . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /override2" ) ;
123123 parallelCustomJsonConfig . StringProperty . Should ( ) . Be ( "str3" ) ;
124124 parallelCustomJsonConfig . StringListValues . Should ( ) . Equal ( new [ ] { "str1" , "str2" , "str3" , "str5" } ) ;
125125
126126 AtataContext . Current . CleanUp ( ) ;
127127
128128 CustomJsonConfig . Current . Should ( ) . BeNull ( ) ;
129129
130- CustomJsonConfig . Global . BaseUrl . Should ( ) . Be ( "https://atata-framework.github.io/atata-sample-app/#! /" ) ;
130+ CustomJsonConfig . Global . BaseUrl . Should ( ) . Be ( "https://demo. atata.io /" ) ;
131131 CustomJsonConfig . Global . StringProperty . Should ( ) . Be ( "str" ) ;
132132 CustomJsonConfig . Global . StringListValues . Should ( ) . Equal ( new [ ] { "str1" , "str2" , "str3" } ) ;
133133 }
0 commit comments