diff --git a/lib/livebook_web/live/session_live/app_teams_live.ex b/lib/livebook_web/live/session_live/app_teams_live.ex index 7d92bbc51..016bef0b5 100644 --- a/lib/livebook_web/live/session_live/app_teams_live.ex +++ b/lib/livebook_web/live/session_live/app_teams_live.ex @@ -343,7 +343,7 @@ defmodule LivebookWeb.SessionLive.AppTeamsLive do with {:ok, app_deployment} <- pack_app(socket), :ok <- deploy_app(socket, app_deployment) do message = - "App deployment for #{app_deployment.slug} with title #{app_deployment.title} created successfully." + "App deployment created successfully." {:noreply, socket diff --git a/test/livebook_teams/web/session_live_test.exs b/test/livebook_teams/web/session_live_test.exs index 74ab2e549..83fc5fa3f 100644 --- a/test/livebook_teams/web/session_live_test.exs +++ b/test/livebook_teams/web/session_live_test.exs @@ -545,7 +545,7 @@ defmodule LivebookWeb.Integration.SessionLiveTest do |> render_click() assert render(view) =~ - "App deployment for #{slug} with title Untitled notebook created successfully" + "App deployment created successfully" end test "deployment flow with existing deployment groups in the hub", @@ -608,7 +608,7 @@ defmodule LivebookWeb.Integration.SessionLiveTest do |> render_click() assert render(view) =~ - "App deployment for #{slug} with title Untitled notebook created successfully" + "App deployment created successfully" end test "shows an error when the deployment size is higher than the maximum size of 20MB",