Skip to content

Commit 9cc31f6

Browse files
committed
run formatter
1 parent da8921f commit 9cc31f6

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

lib/scenic.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ defmodule Scenic do
3838

3939
@viewports :scenic_dyn_viewports
4040

41-
@version Mix.Project.config()[:version]
42-
41+
@version Mix.Project.config()[:version]
4342

4443
@doc """
4544
Return the current version of scenic

test/scenic_test.exs

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ defmodule ScenicTest do
33
doctest Scenic
44

55
test "version works" do
6-
assert Scenic.version == Mix.Project.config()[:version]
6+
assert Scenic.version() == Mix.Project.config()[:version]
77
end
88

99
test "child_spec" do
10-
assert Scenic.child_spec(:opts) == %{
11-
id: Scenic,
12-
start: {Scenic, :start_link, [:opts]},
13-
type: :supervisor,
14-
restart: :permanent,
15-
shutdown: 500
16-
}
10+
assert Scenic.child_spec(:opts) == %{
11+
id: Scenic,
12+
start: {Scenic, :start_link, [:opts]},
13+
type: :supervisor,
14+
restart: :permanent,
15+
shutdown: 500
16+
}
1717
end
18-
1918
end

0 commit comments

Comments
 (0)