Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
adapt hue tests to Hue API docu (#4365)
Browse files Browse the repository at this point in the history
relates to #4363
Signed-off-by: Simon Kaufmann <simon.kfm@googlemail.com>
  • Loading branch information
sjsf authored and kaikreuzer committed Oct 2, 2017
1 parent c5be990 commit 8bc1a0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -481,7 +481,7 @@ class HueLightHandlerOSGiTest extends AbstractHueOSGiTest {
new Result("", 200)
},
get: { String address ->
if (address.endsWith("testUserName/")) {
if (address.endsWith("testUserName")) {
new Result(currentState.toString(), 200)
}
}
Expand Down
Expand Up @@ -157,7 +157,7 @@ public Result put(String address, String body) throws IOException {

@Override
public Result get(String address) throws IOException {
if (address.endsWith("testUserName/")) {
if (address.endsWith("testUserName")) {
String body = "{\"lights\":{}}";
return new Result(body, 200);
} else {
Expand Down

0 comments on commit 8bc1a0f

Please sign in to comment.