@@ -98,7 +98,7 @@ void main() {
9898
9999 expect (
100100 feed.items.first.content! .value,
101- '<img alt="unit test image" width=\ " 1000\ " height=\ " 690\ " src=\ " https://test.com/image_link\ " /> Test content<br />' ,
101+ '<img alt="unit test image" width="1000" height="690" src="https://test.com/image_link"/> Test content<br />' ,
102102 );
103103 expect (
104104 feed.items.first.content! .images.first,
@@ -439,14 +439,14 @@ void main() {
439439 expect (feed.podcastIndex? .value! [0 ]! .recipients! [0 ]! .name, 'podcaster' );
440440 expect (feed.podcastIndex? .value! [0 ]! .recipients! [0 ]! .type, 'node' );
441441 expect (feed.podcastIndex? .value! [0 ]! .recipients! [0 ]! .address,
442- 'ABCDEFGHIJLKMNOPQRSTUVWXYZ' );
442+ 'ABCDEFGHIJLKMNOPQRSTUVWXYZ' , );
443443 expect (feed.podcastIndex? .value! [0 ]! .recipients! [0 ]! .split, 99 );
444444
445445 expect (
446- feed.podcastIndex? .value! [0 ]! .recipients! [1 ]! .name, 'hosting company' );
446+ feed.podcastIndex? .value! [0 ]! .recipients! [1 ]! .name, 'hosting company' , );
447447 expect (feed.podcastIndex? .value! [0 ]! .recipients! [1 ]! .type, 'node' );
448448 expect (feed.podcastIndex? .value! [0 ]! .recipients! [1 ]! .address,
449- 'abcdefghijklmnopqrstuvwxyz' );
449+ 'abcdefghijklmnopqrstuvwxyz' , );
450450 expect (feed.podcastIndex? .value! [0 ]! .recipients! [1 ]! .split, 1 );
451451
452452 expect (feed.podcastIndex! .guid, '20a14457-0993-49b8-a37a-18384e7f91f8' );
@@ -469,7 +469,7 @@ void main() {
469469 expect (chapters1? .type, 'application/json' );
470470
471471 expect (item1.podcastIndex! .license! .url,
472- 'https://www.mytestlicense.org/lic.html' );
472+ 'https://www.mytestlicense.org/lic.html' , );
473473 expect (item1.podcastIndex! .license! .license, 'my-test-license-v1' );
474474
475475 expect (soundbite1.length, 1 );
0 commit comments