From a7f23028a0cad0c2af12c7edcae0e2950e02e36f Mon Sep 17 00:00:00 2001 From: tbradsha <32492176+tbradsha@users.noreply.github.com> Date: Tue, 12 Nov 2024 19:15:52 -0700 Subject: [PATCH] Use a more recent theme --- .../tests/php/sync/test_class.jetpack-sync-themes.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-themes.php b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-themes.php index 6a779671f29ec..f821e46dd9eff 100644 --- a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-themes.php +++ b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-themes.php @@ -250,8 +250,8 @@ private function perform_network_enable_disable_assertions( $test_themes, $event } public function test_install_edit_delete_theme_sync() { - $theme_slug = 'itek'; - $theme_name = 'iTek'; + $theme_slug = 'dossier'; + $theme_name = 'Dossier'; delete_theme( $theme_slug ); // Ensure theme is not lingering on file system $this->server_event_storage->reset(); @@ -295,7 +295,7 @@ public function test_install_edit_delete_theme_sync() { $event_data = $this->server_event_storage->get_most_recent_event( 'jetpack_deleted_theme' ); - $this->assertEquals( 'itek', $event_data->args[0] ); + $this->assertEquals( 'dossier', $event_data->args[0] ); } public function test_update_themes_sync() {