From c410dc9430ce0a04e5e7b79780aff6cdd656838f Mon Sep 17 00:00:00 2001 From: Elias Arruda Date: Tue, 17 Dec 2024 15:05:18 -0300 Subject: [PATCH] fix possible name conflict with ci tests --- test/actors/actors_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/actors/actors_test.exs b/test/actors/actors_test.exs index 845d731f..e5cd10ba 100644 --- a/test/actors/actors_test.exs +++ b/test/actors/actors_test.exs @@ -112,7 +112,7 @@ defmodule ActorsTest do end test "invoke task actor function for a newly registered actor" do - actor_name = "Jose" + actor_name = "task_actor_test_" <> Ecto.UUID.generate() actor = build_actor(name: actor_name, kind: :TASK) actor_entry = build_actor_entry(name: actor_name, actor: actor)