@@ -211,7 +211,7 @@ private static IEnumerable<object[]> BlockData()
211211 new Action < IBlock , INotionClient > ( ( block , client ) =>
212212 {
213213 block . Should ( ) . NotBeNull ( ) ;
214-
214+
215215 block . Should ( ) . BeOfType < AudioBlock > ( ) . Subject
216216 . Audio . Should ( ) . BeOfType < ExternalFile > ( ) . Subject
217217 . External . Url . Should ( ) . Be ( "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-3.mp3" ) ;
@@ -252,7 +252,7 @@ private static IEnumerable<object[]> BlockData()
252252 {
253253 Assert . NotNull ( block ) ;
254254 var calloutBlock = Assert . IsType < CalloutBlock > ( block ) ;
255-
255+
256256 Assert . Equal ( "Test 2" , calloutBlock . Callout . RichText . OfType < RichTextText > ( ) . First ( ) . Text . Content ) ;
257257 } )
258258 } ,
@@ -282,7 +282,7 @@ private static IEnumerable<object[]> BlockData()
282282 {
283283 Assert . NotNull ( block ) ;
284284 var quoteBlock = Assert . IsType < QuoteBlock > ( block ) ;
285-
285+
286286 Assert . Equal ( "Test 2" , quoteBlock . Quote . RichText . OfType < RichTextText > ( ) . First ( ) . Text . Content ) ;
287287 } )
288288 } ,
@@ -314,7 +314,7 @@ private static IEnumerable<object[]> BlockData()
314314 Assert . NotNull ( block ) ;
315315 var imageBlock = Assert . IsType < ImageBlock > ( block ) ;
316316 var imageFile = Assert . IsType < ExternalFile > ( imageBlock . Image ) ;
317-
317+
318318 Assert . Equal ( "https://www.iaspaper.net/wp-content/uploads/2017/09/TNEA-Online-Application.jpg" ,
319319 imageFile . External . Url ) ;
320320 } )
@@ -339,7 +339,7 @@ private static IEnumerable<object[]> BlockData()
339339 {
340340 Assert . NotNull ( block ) ;
341341 var embedBlock = Assert . IsType < EmbedBlock > ( block ) ;
342-
342+
343343 Assert . Equal ( "https://www.iaspaper.net/wp-content/uploads/2017/09/TNEA-Online-Application.jpg" ,
344344 embedBlock . Embed . Url ) ;
345345 } )
@@ -381,10 +381,10 @@ private static IEnumerable<object[]> BlockData()
381381 {
382382 Assert . NotNull ( block ) ;
383383 var templateBlock = Assert . IsType < TemplateBlock > ( block ) ;
384-
384+
385385 Assert . Single ( templateBlock . Template . RichText ) ;
386386 Assert . Null ( templateBlock . Template . Children ) ;
387-
387+
388388 Assert . Equal ( "Test Template 2" ,
389389 templateBlock . Template . RichText . OfType < RichTextText > ( ) . First ( ) . Text . Content ) ;
390390 } )
@@ -407,7 +407,7 @@ private static IEnumerable<object[]> BlockData()
407407 {
408408 Assert . NotNull ( block ) ;
409409 var linkToPageBlock = Assert . IsType < LinkToPageBlock > ( block ) ;
410-
410+
411411 var pageParent = Assert . IsType < PageParent > ( linkToPageBlock . LinkToPage ) ;
412412
413413 // TODO: Currently the api doesn't allow to update the link_to_page block type
0 commit comments