Change copy: app deployment success message (#2606)

This commit is contained in:
Hugo Baraúna 2024-05-15 16:43:05 -03:00 committed by GitHub
parent 44c480eb84
commit c884831a07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -343,7 +343,7 @@ defmodule LivebookWeb.SessionLive.AppTeamsLive do
with {:ok, app_deployment} <- pack_app(socket), with {:ok, app_deployment} <- pack_app(socket),
:ok <- deploy_app(socket, app_deployment) do :ok <- deploy_app(socket, app_deployment) do
message = message =
"App deployment for #{app_deployment.slug} with title #{app_deployment.title} created successfully." "App deployment created successfully."
{:noreply, {:noreply,
socket socket

View file

@ -545,7 +545,7 @@ defmodule LivebookWeb.Integration.SessionLiveTest do
|> render_click() |> render_click()
assert render(view) =~ assert render(view) =~
"App deployment for #{slug} with title Untitled notebook created successfully" "App deployment created successfully"
end end
test "deployment flow with existing deployment groups in the hub", test "deployment flow with existing deployment groups in the hub",
@ -608,7 +608,7 @@ defmodule LivebookWeb.Integration.SessionLiveTest do
|> render_click() |> render_click()
assert render(view) =~ assert render(view) =~
"App deployment for #{slug} with title Untitled notebook created successfully" "App deployment created successfully"
end end
test "shows an error when the deployment size is higher than the maximum size of 20MB", test "shows an error when the deployment size is higher than the maximum size of 20MB",