mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-06 19:46:00 +08:00
Change copy: app deployment success message (#2606)
This commit is contained in:
parent
44c480eb84
commit
c884831a07
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue