aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/helper
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-09-22 11:40:18 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2015-09-22 11:40:18 +1200
commitec04b5f12e13f041262c179fa103b7e4694d7327 (patch)
tree68750a078080ddfbb9f44f2eb73b1fa63d7202e3 /test/org/traccar/helper
parent7387155d9d9fdaefb260e94b1094fa5ed285fdb3 (diff)
downloadtraccar-server-ec04b5f12e13f041262c179fa103b7e4694d7327.tar.gz
traccar-server-ec04b5f12e13f041262c179fa103b7e4694d7327.tar.bz2
traccar-server-ec04b5f12e13f041262c179fa103b7e4694d7327.zip
Fix log formatting unit test
Diffstat (limited to 'test/org/traccar/helper')
-rw-r--r--test/org/traccar/helper/LogTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/org/traccar/helper/LogTest.java b/test/org/traccar/helper/LogTest.java
index 4cd617ecb..579c13e7d 100644
--- a/test/org/traccar/helper/LogTest.java
+++ b/test/org/traccar/helper/LogTest.java
@@ -7,7 +7,7 @@ public class LogTest {
@Test
public void testLog() {
- Assert.assertEquals("test - Exception (LogTest.java:10 < ...)", Log.exceptionStack(new Exception("test")));
+ Assert.assertEquals("test - Exception (LogTest:10 < ...)", Log.exceptionStack(new Exception("test")));
}
}