From: Peter Lemenkov Date: Fri, 7 Jul 2023 19:55:11 +0200 Subject: [PATCH] Use PID valid for 32-bit systems, followup to #12741 Signed-off-by: Peter Lemenkov diff --git a/lib/iex/test/iex/helpers_test.exs b/lib/iex/test/iex/helpers_test.exs index ec0b58554..1dee4bf7a 100644 --- a/lib/iex/test/iex/helpers_test.exs +++ b/lib/iex/test/iex/helpers_test.exs @@ -1364,8 +1364,8 @@ test "reloads Erlang modules" do describe "pid/1,3" do test "builds a PID from string" do - assert inspect(pid("0.32767.3276")) == "#PID<0.32767.3276>" - assert inspect(pid("0.5.6")) == "#PID<0.5.6>" + assert inspect(pid("0.32767.0")) == "#PID<0.32767.0>" + assert inspect(pid("0.5.0")) == "#PID<0.5.0>" assert_raise ArgumentError, fn -> pid("0.6.-6") @@ -1381,8 +1381,8 @@ test "builds a PID from atom" do end test "builds a PID from integers" do - assert inspect(pid(0, 32767, 3276)) == "#PID<0.32767.3276>" - assert inspect(pid(0, 5, 6)) == "#PID<0.5.6>" + assert inspect(pid(0, 32767, 0)) == "#PID<0.32767.0>" + assert inspect(pid(0, 5, 0)) == "#PID<0.5.0>" assert_raise FunctionClauseError, fn -> pid(0, 6, -6)