File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class Config
14
14
/// <summary>
15
15
/// 默认空间管理域名
16
16
/// </summary>
17
- public static string DefaultUcHost = "uc.qbox.me " ;
17
+ public static string DefaultUcHost = "uc.qiniuapi.com " ;
18
18
/// <summary>
19
19
/// 默认查询区域域名
20
20
/// </summary>
Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ public void UcHostTest()
11
11
{
12
12
Config config = new Config ( ) ;
13
13
string ucHost = config . UcHost ( ) ;
14
- Assert . AreEqual ( "http://uc.qbox.me " , ucHost ) ;
14
+ Assert . AreEqual ( "http://uc.qiniuapi.com " , ucHost ) ;
15
15
config . SetUcHost ( "uc.example.com" ) ;
16
16
ucHost = config . UcHost ( ) ;
17
17
Assert . AreEqual ( "http://uc.example.com" , ucHost ) ;
18
18
19
19
config = new Config ( ) ;
20
20
config . UseHttps = true ;
21
21
ucHost = config . UcHost ( ) ;
22
- Assert . AreEqual ( "https://uc.qbox.me " , ucHost ) ;
22
+ Assert . AreEqual ( "https://uc.qiniuapi.com " , ucHost ) ;
23
23
config . SetUcHost ( "uc.example.com" ) ;
24
24
ucHost = config . UcHost ( ) ;
25
25
Assert . AreEqual ( "https://uc.example.com" , ucHost ) ;
You can’t perform that action at this time.
0 commit comments