Code Duplication    Length = 10-10 lines in 2 locations

packages/lazy-images/tests/php/test_class.lazy-images.php 2 locations

@@ 509-518 (lines=10) @@
506
	 *
507
	 * @return string
508
	 */
509
	public function get_input_content() {
510
		ob_start();
511
512
		require_once dirname( __FILE__ ) . '/pre-image-placeholder-content.php';
513
514
		$contents = trim( ob_get_contents() );
515
		ob_end_clean();
516
517
		return trim( $contents );
518
	}
519
520
	/**
521
	 * Get output content.
@@ 525-534 (lines=10) @@
522
	 *
523
	 * @return string
524
	 */
525
	public function get_output_content() {
526
		ob_start();
527
528
		require_once dirname( __FILE__ ) . '/post-image-placeholder-content.php';
529
530
		$contents = trim( ob_get_contents() );
531
		ob_end_clean();
532
533
		return trim( $contents );
534
	}
535
536
	/**
537
	 * Check is the srcset attribute it set.