Skip to content

Commit dbbd124

Browse files
authored
testovací skautis používá https (#60)
* testovací skautis používá https ode dneška používá testovaci skautis https * doplněna další místa, kde se to používá
1 parent 3082708 commit dbbd124

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Config
1717
const COMPRESSION_ENABLED = true;
1818
const COMPRESSION_DISABLED = false;
1919

20-
const URL_TEST = "http://test-is.skaut.cz/";
20+
const URL_TEST = "https://test-is.skaut.cz/";
2121
const URL_PRODUCTION = "https://is.skaut.cz/";
2222

2323
/**

tests/Unit/WebServiceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testCallback()
3232
'ID_Application' => 123,
3333
Skautis\User::ID_LOGIN => 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
3434
];
35-
$webService = new WebService("http://test-is.skaut.cz/JunakWebservice/UserManagement.asmx?WSDL", $data);
35+
$webService = new WebService("https://test-is.skaut.cz/JunakWebservice/UserManagement.asmx?WSDL", $data);
3636
$webService->subscribe(WebService::EVENT_FAILURE, $callback);
3737

3838
try {
@@ -58,7 +58,7 @@ public function testCall()
5858
'ID_Application' => 123,
5959
Skautis\User::ID_LOGIN => 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
6060
];
61-
$webService = new WebService("http://test-is.skaut.cz/JunakWebservice/UserManagement.asmx?WSDL", $data);
61+
$webService = new WebService("https://test-is.skaut.cz/JunakWebservice/UserManagement.asmx?WSDL", $data);
6262
$webService->subscribe(WebService::EVENT_FAILURE, $callback);
6363

6464
try {

0 commit comments

Comments
 (0)