@@ -118,7 +118,6 @@ enum WireObjectMessageTests {
118118 counter: nil ,
119119 nonce: nil ,
120120 initialValue: nil ,
121- initialValueEncoding: nil ,
122121 ) ,
123122 object: nil ,
124123 serial: " s1 " ,
@@ -173,7 +172,6 @@ enum WireObjectMessageTests {
173172 " map " : [ " semantics " : 0 , " entries " : [ " key1 " : [ " data " : [ " string " : " value1 " ] , " tombstone " : false ] ] ] ,
174173 " counter " : [ " count " : 42 ] ,
175174 " nonce " : " nonce1 " ,
176- " initialValueEncoding " : " utf8 " ,
177175 ]
178176 let op = try WireObjectOperation ( wireObject: wire)
179177 #expect( op. action == . known( . mapCreate) )
@@ -189,8 +187,6 @@ enum WireObjectMessageTests {
189187 // Per OOP3g we should not try and extract this
190188 #expect( op. nonce == nil )
191189 // Per OOP3h we should not try and extract this
192- #expect( op. initialValueEncoding == nil )
193- // Per OOP3i we should not try and extract this
194190 #expect( op. initialValue == nil )
195191 }
196192
@@ -209,7 +205,6 @@ enum WireObjectMessageTests {
209205 #expect( op. counter == nil )
210206 #expect( op. nonce == nil )
211207 #expect( op. initialValue == nil )
212- #expect( op. initialValueEncoding == nil )
213208 }
214209
215210 @Test
@@ -236,7 +231,6 @@ enum WireObjectMessageTests {
236231 counter: WireObjectsCounter ( count: 42 ) ,
237232 nonce: " nonce1 " ,
238233 initialValue: nil ,
239- initialValueEncoding: " utf8 " ,
240234 )
241235 let wire = op. toWireObject
242236 #expect( wire == [
@@ -247,7 +241,6 @@ enum WireObjectMessageTests {
247241 " map " : [ " semantics " : 0 , " entries " : [ " key1 " : [ " data " : [ " string " : " value1 " ] , " tombstone " : false ] ] ] ,
248242 " counter " : [ " count " : 42 ] ,
249243 " nonce " : " nonce1 " ,
250- " initialValueEncoding " : " utf8 " ,
251244 ] )
252245 }
253246
@@ -262,7 +255,6 @@ enum WireObjectMessageTests {
262255 counter: nil ,
263256 nonce: nil ,
264257 initialValue: nil ,
265- initialValueEncoding: nil ,
266258 )
267259 let wire = op. toWireObject
268260 #expect( wire == [
@@ -326,7 +318,6 @@ enum WireObjectMessageTests {
326318 counter: nil ,
327319 nonce: nil ,
328320 initialValue: nil ,
329- initialValueEncoding: nil ,
330321 ) ,
331322 map: WireObjectsMap (
332323 semantics: . known( . lww) ,
0 commit comments