From 38744d8bd28e2d444d591c5e65c29d5ad9e1e448 Mon Sep 17 00:00:00 2001 From: Jake Spurlock Date: Fri, 29 May 2020 23:34:00 +0000 Subject: [PATCH] Code Standards: Clean up whitespace on the end of a file. See: #45163. Props: whyisjake. git-svn-id: https://develop.svn.wordpress.org/trunk@47866 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/term/getTermBy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/term/getTermBy.php b/tests/phpunit/tests/term/getTermBy.php index d49f302877..d1eda875c8 100644 --- a/tests/phpunit/tests/term/getTermBy.php +++ b/tests/phpunit/tests/term/getTermBy.php @@ -39,7 +39,7 @@ class Tests_Term_GetTermBy extends WP_UnitTestCase { $term1 = wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) ); $term2 = get_term_by( 'ID', $term1['term_id'], 'category' ); $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 ); - } + } /** * @ticket 21651