Skip to content

Commit

Permalink
remove warnings in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mobileoverlord committed Dec 14, 2016
1 parent 4077d37 commit d2be98e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## Nerves 0.4.1-dev
## Nerves 0.4.1
* Bug Fixes
* Do not stop the Nerves.Env at the end of the package compiler. This would cause the packages to resolve the wrong dep type.
* Fixed issue where remote artifacts would not be globally cached
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Nerves.Mixfile do
name: "Nerves",
source_url: "https://github.com/nerves-project/nerves",
homepage_url: "http://nerves-project.org/",
version: "0.4.1-dev",
version: "0.4.1",
elixir: "~> 1.2.4 or ~> 1.3.2 or ~> 1.4.0-rc.0 or ~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
deps: deps(),
Expand Down
4 changes: 2 additions & 2 deletions test/support/test_case.ex
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ defmodule NervesTest.Case do
end

def fixture_path(extension) do
Path.join fixture_path, extension
Path.join(fixture_path(), extension)
end

def tmp_path do
Path.expand("../tmp", __DIR__)
end

def tmp_path(extension) do
Path.join tmp_path, to_string(extension)
Path.join(tmp_path(), to_string(extension))
end

def fixture_to_tmp(fixture, dest) do
Expand Down

0 comments on commit d2be98e

Please sign in to comment.