Skip to content

Commit ec5afe2

Browse files
povilasJosé Valim
authored andcommitted
Fix system_test (#5528)
Git since v2.11 no longer defaults to 7-hexdigits for short object abbreviation. See git/git@e6c587c Signed-off-by: José Valim <jose.valim@plataformatec.com.br>
1 parent 345ce9c commit ec5afe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/test/elixir/system_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defmodule SystemTest do
1313
assert is_binary build_info[:version]
1414

1515
if build_info[:revision] != "" do
16-
assert String.length(build_info[:revision]) == 7
16+
assert String.length(build_info[:revision]) >= 7
1717
end
1818

1919
version_file = Path.join([__DIR__, "../../../..", "VERSION"]) |> Path.expand

0 commit comments

Comments
 (0)