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 @@ -14,7 +14,7 @@ public class Config
1414 /// <summary>
1515 /// 默认空间管理域名
1616 /// </summary>
17- public static string DefaultUcHost = "uc.qbox.me " ;
17+ public static string DefaultUcHost = "uc.qiniuapi.com " ;
1818 /// <summary>
1919 /// 默认查询区域域名
2020 /// </summary>
Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ public void UcHostTest()
1111 {
1212 Config config = new Config ( ) ;
1313 string ucHost = config . UcHost ( ) ;
14- Assert . AreEqual ( "http://uc.qbox.me " , ucHost ) ;
14+ Assert . AreEqual ( "http://uc.qiniuapi.com " , ucHost ) ;
1515 config . SetUcHost ( "uc.example.com" ) ;
1616 ucHost = config . UcHost ( ) ;
1717 Assert . AreEqual ( "http://uc.example.com" , ucHost ) ;
1818
1919 config = new Config ( ) ;
2020 config . UseHttps = true ;
2121 ucHost = config . UcHost ( ) ;
22- Assert . AreEqual ( "https://uc.qbox.me " , ucHost ) ;
22+ Assert . AreEqual ( "https://uc.qiniuapi.com " , ucHost ) ;
2323 config . SetUcHost ( "uc.example.com" ) ;
2424 ucHost = config . UcHost ( ) ;
2525 Assert . AreEqual ( "https://uc.example.com" , ucHost ) ;
You can’t perform that action at this time.
0 commit comments