Minor addition to the JsonNullTest.

This commit is contained in:
Joel Leitch 2013-01-14 18:40:23 +00:00
parent 84201c015f
commit e5b9b8eb81

View File

@ -34,5 +34,6 @@ public final class JsonNullTest extends TestCase {
public void testDeepCopy() {
JsonNull a = new JsonNull();
assertSame(JsonNull.INSTANCE, a.deepCopy());
assertSame(JsonNull.INSTANCE, JsonNull.INSTANCE.deepCopy());
}
}