@@ -48,7 +48,7 @@ public function test_saving_page_with_includes()
4848 $ includeTag = '{{@ ' . $ secondPage ->id . '}} ' ;
4949 $ page ->html = '<p> ' . $ includeTag . '</p> ' ;
5050
51- $ resp = $ this ->put ($ page ->getUrl (), ['name ' => $ page ->name , 'html ' => $ page ->html , 'summary ' => '' ]);
51+ $ resp = $ this ->put ($ page ->getUrl (), ['name ' => $ page ->name , 'html ' => $ page ->html , 'changelog ' => '' ]);
5252
5353 $ resp ->assertStatus (302 );
5454
@@ -127,7 +127,7 @@ public function test_duplicate_ids_fixed_on_page_save()
127127 $ pageSave = $ this ->put ($ page ->getUrl (), [
128128 'name ' => $ page ->name ,
129129 'html ' => $ content ,
130- 'summary ' => '' ,
130+ 'changelog ' => '' ,
131131 ]);
132132 $ pageSave ->assertRedirect ();
133133
@@ -144,7 +144,7 @@ public function test_anchors_referencing_non_bkmrk_ids_rewritten_after_save()
144144 $ this ->put ($ page ->getUrl (), [
145145 'name ' => $ page ->name ,
146146 'html ' => $ content ,
147- 'summary ' => '' ,
147+ 'changelog ' => '' ,
148148 ]);
149149
150150 $ updatedPage = Page::query ()->where ('id ' , '= ' , $ page ->id )->first ();
@@ -253,7 +253,7 @@ public function test_page_markdown_table_rendering()
253253| Paragraph | Text | ' ;
254254 $ this ->put ($ page ->getUrl (), [
255255 'name ' => $ page ->name , 'markdown ' => $ content ,
256- 'html ' => '' , 'summary ' => '' ,
256+ 'html ' => '' , 'changelog ' => '' ,
257257 ]);
258258
259259 $ page ->refresh ();
@@ -272,7 +272,7 @@ public function test_page_markdown_task_list_rendering()
272272- [x] Item b ' ;
273273 $ this ->put ($ page ->getUrl (), [
274274 'name ' => $ page ->name , 'markdown ' => $ content ,
275- 'html ' => '' , 'summary ' => '' ,
275+ 'html ' => '' , 'changelog ' => '' ,
276276 ]);
277277
278278 $ page ->refresh ();
@@ -292,7 +292,7 @@ public function test_page_markdown_strikethrough_rendering()
292292 $ content = '~~some crossed out text~~ ' ;
293293 $ this ->put ($ page ->getUrl (), [
294294 'name ' => $ page ->name , 'markdown ' => $ content ,
295- 'html ' => '' , 'summary ' => '' ,
295+ 'html ' => '' , 'changelog ' => '' ,
296296 ]);
297297
298298 $ page ->refresh ();
@@ -311,7 +311,7 @@ public function test_page_markdown_single_html_comment_saving()
311311 $ content = '<!-- Test Comment --> ' ;
312312 $ this ->put ($ page ->getUrl (), [
313313 'name ' => $ page ->name , 'markdown ' => $ content ,
314- 'html ' => '' , 'summary ' => '' ,
314+ 'html ' => '' , 'changelog ' => '' ,
315315 ])->assertRedirect ();
316316
317317 $ page ->refresh ();
@@ -328,7 +328,7 @@ public function test_base64_images_get_extracted_from_page_content()
328328 $ page = $ this ->entities ->page ();
329329
330330 $ this ->put ($ page ->getUrl (), [
331- 'name ' => $ page ->name , 'summary ' => '' ,
331+ 'name ' => $ page ->name , 'changelog ' => '' ,
332332 'html ' => '<p>test<img src="data:image/jpeg;base64, ' . $ this ->base64Jpeg . '"/></p> ' ,
333333 ]);
334334
@@ -352,7 +352,7 @@ public function test_base64_images_get_extracted_when_containing_whitespace()
352352 $ base64PngWithWhitespace = "iVBORw0KGg \noAAAANSUhE \tUgAAAAEAAAA BCA YAAAAfFcSJAAA \n\t ACklEQVR4nGMAAQAABQAB " ;
353353 $ base64PngWithoutWhitespace = 'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQAB ' ;
354354 $ this ->put ($ page ->getUrl (), [
355- 'name ' => $ page ->name , 'summary ' => '' ,
355+ 'name ' => $ page ->name , 'changelog ' => '' ,
356356 'html ' => '<p>test<img src="data:image/png;base64, ' . $ base64PngWithWhitespace . '"/></p> ' ,
357357 ]);
358358
@@ -381,7 +381,7 @@ public function test_base64_images_within_html_blanked_if_not_supported_extensio
381381 $ page = $ this ->entities ->page ();
382382
383383 $ this ->put ($ page ->getUrl (), [
384- 'name ' => $ page ->name , 'summary ' => '' ,
384+ 'name ' => $ page ->name , 'changelog ' => '' ,
385385 'html ' => '<p>test<img src="data:image/ ' . $ extension . ';base64, ' . $ this ->base64Jpeg . '"/></p> ' ,
386386 ]);
387387
@@ -425,7 +425,7 @@ public function test_base64_images_get_extracted_from_markdown_page_content()
425425 $ page = $ this ->entities ->page ();
426426
427427 $ this ->put ($ page ->getUrl (), [
428- 'name ' => $ page ->name , 'summary ' => '' ,
428+ 'name ' => $ page ->name , 'changelog ' => '' ,
429429 'markdown ' => 'test  ' ,
430430 ]);
431431
@@ -456,7 +456,7 @@ public function test_markdown_base64_extract_not_limited_by_pcre_limits()
456456 $ base64Content = base64_encode ($ content );
457457
458458 $ this ->put ($ page ->getUrl (), [
459- 'name ' => $ page ->name , 'summary ' => '' ,
459+ 'name ' => $ page ->name , 'changelog ' => '' ,
460460 'markdown ' => 'test   ' ,
461461 ]);
462462
@@ -479,7 +479,7 @@ public function test_base64_images_within_markdown_blanked_if_not_supported_exte
479479 $ page = $ this ->entities ->page ();
480480
481481 $ this ->asEditor ()->put ($ page ->getUrl (), [
482- 'name ' => $ page ->name , 'summary ' => '' ,
482+ 'name ' => $ page ->name , 'changelog ' => '' ,
483483 'markdown ' => 'test  ' ,
484484 ]);
485485
0 commit comments