Skip to content

Commit

Permalink
Change some access modifiers to private in a test class
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroOne3010 committed Aug 14, 2018
1 parent 07b1ad7 commit f98a0c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/github/zeroone3010/yahueapi/HueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

class HueTest {
private static final String API_KEY = "abcd1234";
public static final String API_BASE_PATH = "/api/" + API_KEY + "/";
private static final String API_BASE_PATH = "/api/" + API_KEY + "/";
private static final String MOTION_SENSOR_NAME = "Hallway sensor";
public static final String TEMPERATURE_SENSOR_NAME = "Hue temperature sensor 1";
private static final String TEMPERATURE_SENSOR_NAME = "Hue temperature sensor 1";

final WireMockServer wireMockServer = new WireMockServer(wireMockConfig().dynamicPort());

Expand Down

0 comments on commit f98a0c7

Please sign in to comment.