@@ -62,16 +62,16 @@ public async Task Custom_Partition_Initial_State_Should_Be_Used_For_All_Partitio
6262 batch1 . Should ( ) . HaveCount ( 100 ) ;
6363
6464 batch0 . ElementAt ( 0 ) . SequenceNumber . Should ( ) . Be ( 43 ) ;
65- batch0 . ElementAt ( 0 ) . Offset . Should ( ) . Be ( 43 ) ;
65+ batch0 . ElementAt ( 0 ) . OffsetString . Should ( ) . Be ( "43" ) ;
6666 batch0 . ElementAt ( 0 ) . EnqueuedTime . Should ( ) . Be ( timeProvider . GetUtcNow ( ) ) ;
6767 batch0 . ElementAt ( 1 ) . SequenceNumber . Should ( ) . Be ( 44 ) ;
68- batch0 . ElementAt ( 1 ) . Offset . Should ( ) . Be ( 72 ) ;
68+ batch0 . ElementAt ( 1 ) . OffsetString . Should ( ) . Be ( "72" ) ;
6969
7070 batch1 . ElementAt ( 0 ) . SequenceNumber . Should ( ) . Be ( 43 ) ;
71- batch1 . ElementAt ( 0 ) . Offset . Should ( ) . Be ( 43 ) ;
71+ batch1 . ElementAt ( 0 ) . OffsetString . Should ( ) . Be ( "43" ) ;
7272 batch1 . ElementAt ( 0 ) . EnqueuedTime . Should ( ) . Be ( timeProvider . GetUtcNow ( ) ) ;
7373 batch1 . ElementAt ( 1 ) . SequenceNumber . Should ( ) . Be ( 44 ) ;
74- batch1 . ElementAt ( 1 ) . Offset . Should ( ) . Be ( 72 ) ;
74+ batch1 . ElementAt ( 1 ) . OffsetString . Should ( ) . Be ( "72" ) ;
7575
7676 }
7777
@@ -100,11 +100,11 @@ public async Task Default_Partition_Initial_State_Should_Be_Used_For_All_Partiti
100100
101101
102102 batch0 . Single ( ) . SequenceNumber . Should ( ) . Be ( 0 ) ;
103- batch0 . Single ( ) . Offset . Should ( ) . Be ( 0 ) ;
103+ batch0 . Single ( ) . OffsetString . Should ( ) . Be ( "0" ) ;
104104 batch0 . Single ( ) . EnqueuedTime . Should ( ) . BeCloseTo ( DateTimeOffset . UtcNow , TimeSpan . FromMinutes ( 2 ) ) ;
105105
106106 batch1 . Single ( ) . SequenceNumber . Should ( ) . Be ( 0 ) ;
107- batch1 . Single ( ) . Offset . Should ( ) . Be ( 0 ) ;
107+ batch1 . Single ( ) . OffsetString . Should ( ) . Be ( "0" ) ;
108108 batch1 . Single ( ) . EnqueuedTime . Should ( ) . BeCloseTo ( DateTimeOffset . UtcNow , TimeSpan . FromMinutes ( 2 ) ) ;
109109
110110 }
0 commit comments