Skip to content

Commit

Permalink
libring does not accept "" as input
Browse files Browse the repository at this point in the history
  • Loading branch information
derekkraan committed Jun 18, 2019
1 parent 21b92c7 commit 620f1f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/uniform_distribution_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule UniformDistributionTest do
status <- StreamData.member_of([:alive, :dead, :shutting_down]),
name <- binary(),
pid <- atom(:alias) do
%{node_id: node_id, status: status, pid: pid, name: name}
%{node_id: node_id, status: status, pid: pid, name: "A#{name}"}
end

check all members <- list_of(member),
Expand Down
2 changes: 1 addition & 1 deletion test/uniform_quorum_distribution_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule UniformQuorumDistributionTest do
status <- StreamData.member_of([:alive, :dead, :shutting_down]),
name <- binary(),
pid <- atom(:alias) do
%{node_id: node_id, status: status, pid: pid, name: name}
%{node_id: node_id, status: status, pid: pid, name: "A#{name}"}
end

check all members <-
Expand Down

0 comments on commit 620f1f6

Please sign in to comment.