From 08ebe0575b9943614a67dc90f2e1551f91a36c62 Mon Sep 17 00:00:00 2001 From: Jordan Bracco Date: Sun, 14 Jun 2020 19:10:41 +0200 Subject: [PATCH] Shorten a comment to make Credo happy --- test/gen_magic/apprentice_test.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/gen_magic/apprentice_test.exs b/test/gen_magic/apprentice_test.exs index bffd3c7..f7f0bb1 100644 --- a/test/gen_magic/apprentice_test.exs +++ b/test/gen_magic/apprentice_test.exs @@ -104,7 +104,8 @@ defmodule GenMagic.ApprenticeTest do assert {:ok, _} = :erlang.binary_to_term(data) refute_receive _ - # This path should be long enough for buffers, but larger than a valid path name. Magic will return an errno 36. + # This path should be long enough for buffers, but larger than a valid path name. + # Magic will return an errno 36. file = @tmp_path <> String.duplicate("a", 256) send(port, {self(), {:command, :erlang.term_to_binary({:file, file})}}) assert_receive {^port, {:data, data}}