aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java')
-rw-r--r--test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java b/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
index f1bc8e2..e2c428d 100644
--- a/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
+++ b/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
@@ -35,23 +35,23 @@ public class TestConfigurationService extends TestCase
/**
* The name of a property that we will be using for testing.
*/
- private final String propertyName = "my.test.property";
+ private static final String propertyName = "my.test.property";
/**
* The name of a property that we will be using for testing custom event
* notification.
*/
- private final String listenedPropertyName = "a.property.i.listen.to";
+ private static final String listenedPropertyName = "a.property.i.listen.to";
/**
* The value of the property with name propertyName.
*/
- private final String propertyValue = "19200";
+ private static final String propertyValue = "19200";
/**
* A new value for the property with name propertyName
*/
- private final String propertyNewValue = "19201";
+ private static final String propertyNewValue = "19201";
/**
* A PropertyChange listener impl that registers the last received event.