aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/PersonalNoteTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/cgeo/geocaching/PersonalNoteTest.java')
-rw-r--r--tests/src/cgeo/geocaching/PersonalNoteTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/cgeo/geocaching/PersonalNoteTest.java b/tests/src/cgeo/geocaching/PersonalNoteTest.java
index 38085d5..74e1bab 100644
--- a/tests/src/cgeo/geocaching/PersonalNoteTest.java
+++ b/tests/src/cgeo/geocaching/PersonalNoteTest.java
@@ -36,10 +36,10 @@ public class PersonalNoteTest extends TestCase {
Geocache exceedingCache = new Geocache();
exceedingCache.setListId(StoredList.STANDARD_LIST_ID); // stored
- exceedingCache.setPersonalNote(testString.toString());
+ exceedingCache.setPersonalNote(testString);
PersonalNote otherNote = new PersonalNote(exceedingCache);
PersonalNote result = parsedNote.mergeWith(otherNote);
- assertPersonalNote(result, null, testString.toString());
+ assertPersonalNote(result, null, testString);
}
public static void testParseCgeoOnly() {