diff --git a/briar-tests/src/org/briarproject/util/StringUtilsTest.java b/briar-tests/src/org/briarproject/util/StringUtilsTest.java
index 165b5bd8592b63d60dc3d9cb5a441a1e8e02696e..76f830df3df83c2e4ba22fbb016a173118bb7056 100644
--- a/briar-tests/src/org/briarproject/util/StringUtilsTest.java
+++ b/briar-tests/src/org/briarproject/util/StringUtilsTest.java
@@ -124,7 +124,7 @@ public class StringUtilsTest extends BriarTestCase {
 				(byte) 0xED, (byte) 0xB0, (byte) 0x80,
 				(byte) 0xC8, (byte) 0x85 // U+0205
 		};
-		// Converstion should ignore the invalid character and return the rest
+		// Conversion should ignore the invalid character and return the rest
 		String expected = "\u0205";
 		assertEquals(expected, StringUtils.fromUtf8(b));
 	}