diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-09-22 11:40:18 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-09-22 11:40:18 +1200 |
commit | ec04b5f12e13f041262c179fa103b7e4694d7327 (patch) | |
tree | 68750a078080ddfbb9f44f2eb73b1fa63d7202e3 /test/org/traccar/helper/LogTest.java | |
parent | 7387155d9d9fdaefb260e94b1094fa5ed285fdb3 (diff) | |
download | trackermap-server-ec04b5f12e13f041262c179fa103b7e4694d7327.tar.gz trackermap-server-ec04b5f12e13f041262c179fa103b7e4694d7327.tar.bz2 trackermap-server-ec04b5f12e13f041262c179fa103b7e4694d7327.zip |
Fix log formatting unit test
Diffstat (limited to 'test/org/traccar/helper/LogTest.java')
-rw-r--r-- | test/org/traccar/helper/LogTest.java | 2 |
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"))); } } |