diff --git a/tests/test-weather-data.php b/tests/test-weather-data.php index 80ee908..2bd5130 100644 --- a/tests/test-weather-data.php +++ b/tests/test-weather-data.php @@ -29,7 +29,7 @@ public function test_set_and_get_post_temperature() { public function test_set_and_get_post_weatherdata() { $post_id = $this->factory()->post->create(); set_post_weatherdata( $post_id, '', static::$weather ); - $this->assertEquals( static::$weather, get_post_weatherdata( $post_id ), ); + $this->assertEquals( static::$weather, get_post_weatherdata( $post_id ) ); } public function test_set_and_get_old_post_weatherdata() { @@ -42,7 +42,7 @@ public function test_save_meta_from_POST() { $_POST = static::$weather; $post_id = $this->factory()->post->create(); Geo_Base::save_meta( 'post', $post_id, false ); - Assert::assertArraySubset( static::$weather, get_post_weatherdata( $post_id ), ); + Assert::assertArraySubset( static::$weather, get_post_weatherdata( $post_id ) ); } }