Skip to content

Commit

Permalink
testovací skautis používá https (#60)
Browse files Browse the repository at this point in the history
* testovací skautis používá https

ode dneška používá testovaci skautis https

* doplněna další místa, kde se to používá
  • Loading branch information
sinacek authored Mar 7, 2017
1 parent 3082708 commit dbbd124
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Config
const COMPRESSION_ENABLED = true;
const COMPRESSION_DISABLED = false;

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

/**
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/WebServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function testCallback()
'ID_Application' => 123,
Skautis\User::ID_LOGIN => 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
];
$webService = new WebService("http://test-is.skaut.cz/JunakWebservice/UserManagement.asmx?WSDL", $data);
$webService = new WebService("https://test-is.skaut.cz/JunakWebservice/UserManagement.asmx?WSDL", $data);
$webService->subscribe(WebService::EVENT_FAILURE, $callback);

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

try {
Expand Down

0 comments on commit dbbd124

Please sign in to comment.