summaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java')
-rw-r--r--document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java b/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
index ba872b11c28..86ef15e8f33 100644
--- a/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
+++ b/document/src/test/java/com/yahoo/document/update/FieldUpdateTestCase.java
@@ -189,7 +189,7 @@ public class FieldUpdateTestCase {
DocumentSerializer buffer = DocumentSerializerFactory.create6();
source.serialize(buffer);
buffer.getBuf().flip();
- FieldUpdate copy = new FieldUpdate(DocumentDeserializerFactory.create6(docman, buffer.getBuf()), docType, Document.SERIALIZED_VERSION);
+ FieldUpdate copy = new FieldUpdate(DocumentDeserializerFactory.create6(docman, buffer.getBuf()), docType);
assertEquals(source, copy);
return copy;
}