Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/observer_web/apps.ex
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ defmodule ObserverWeb.Apps do
end

@doc """
Retreives information about the application and its respective linked processes, ports and references.
Retrieves information about the application and its respective linked processes, ports and references.
"""
@spec info(node :: atom(), app :: atom) :: map
def info(node \\ Node.self(), app \\ :kernel) do
Expand Down
2 changes: 1 addition & 1 deletion lib/web/resolver.ex
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ defmodule Observer.Web.Resolver do
## Authentication

By combining `resolver_user/1` and `resolve_access/1` callbacks it's possible to build an
authenticaiton solution around the dashboard. For example, this resolver extracts the
authentication solution around the dashboard. For example, this resolver extracts the
`current_user` from the conn's assigns map and then scopes their access based on role. If it is
a standard user or `nil` then they're redirected to `/login` when the dashboard mounts.

Expand Down
2 changes: 1 addition & 1 deletion test/observer_web/web/live/apps/page_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ defmodule Observer.Web.Apps.PageLiveTest do
end

@tag :capture_log
test "Update buttom with Observer Web App + Local Service", %{conn: conn} do
test "Update button with Observer Web App + Local Service", %{conn: conn} do
node = Node.self() |> to_string
service = Helpers.normalize_id(node)

Expand Down
4 changes: 2 additions & 2 deletions test/observer_web/web/live/index.test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule Observer.Web.IndexLiveTest do
assert %{to: "/", flash: %{"error" => "Access forbidden"}} = redirect
end

test "Check iframe OFF allows root buttom", %{conn: conn} do
test "Check iframe OFF allows root button", %{conn: conn} do
RpcStubber.defaults()

TelemetryStubber.defaults()
Expand All @@ -26,7 +26,7 @@ defmodule Observer.Web.IndexLiveTest do
assert html =~ "ROOT"
end

test "Check iframe ON doesn't allow root buttom", %{conn: conn} do
test "Check iframe ON doesn't allow root button", %{conn: conn} do
RpcStubber.defaults()

TelemetryStubber.defaults()
Expand Down
2 changes: 1 addition & 1 deletion test/observer_web/web/live/metrics/page_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ defmodule Observer.Web.Metrics.PageLiveTest do
refute render(liveview) =~ "services:#{node}"
end

test "Testing NodeDown in oberver mode MUST NOT affect selected services", %{conn: conn} do
test "Testing NodeDown in observer mode MUST NOT affect selected services", %{conn: conn} do
node = Node.self() |> to_string
service_id = Helpers.normalize_id(node)
test_pid_process = self()
Expand Down
2 changes: 1 addition & 1 deletion test/observer_web/web/live/tracing/page_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule Observer.Web.Tracing.PageLiveTest do
]

setup context do
# Calling this function guarantess that the module is loaded
# Calling this function guarantees that the module is loaded
ObserverWeb.Common.uuid4()

context
Expand Down