diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ephy-session-test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ephy-session-test.c b/tests/ephy-session-test.c index 6fb2c6eab..9d2d7c725 100644 --- a/tests/ephy-session-test.c +++ b/tests/ephy-session-test.c @@ -80,7 +80,7 @@ test_ephy_session_load (void) EphyEmbed *embed; EphyWebView *view; - session = EPHY_SESSION (ephy_shell_get_session (ephy_shell_get_default ())); + session = ephy_shell_get_session (ephy_shell_get_default ()); g_assert (session); ret = load_session_from_string (session, session_data); @@ -115,7 +115,7 @@ test_ephy_session_load_empty_session (void) EphyEmbed *embed; EphyWebView *view; - session = EPHY_SESSION (ephy_shell_get_session (ephy_shell_get_default ())); + session = ephy_shell_get_session (ephy_shell_get_default ()); g_assert (session); ret = load_session_from_string (session, session_data_empty); @@ -165,7 +165,7 @@ test_ephy_session_load_many_windows (void) EphyEmbed *embed; EphyWebView *view; - session = EPHY_SESSION (ephy_shell_get_session (ephy_shell_get_default ())); + session = ephy_shell_get_session (ephy_shell_get_default ()); g_assert (session); ret = load_session_from_string (session, session_data_many_windows); @@ -198,7 +198,7 @@ open_uris_after_loading_session (const char** uris, int final_num_windows) EphyWebView *view; guint32 user_time; - session = EPHY_SESSION (ephy_shell_get_session (ephy_shell_get_default ())); + session = ephy_shell_get_session (ephy_shell_get_default ()); g_assert (session); user_time = gdk_x11_display_get_user_time (gdk_display_get_default ()); |