Skip to content

Commit

Permalink
use the new formatting...
Browse files Browse the repository at this point in the history
  • Loading branch information
drteeth committed Oct 13, 2024
1 parent 3ccd506 commit 66d9eda
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/subscriptions/concurrent_subscription_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,14 @@ defmodule EventStore.Subscriptions.ConcurrentSubscriptionTest do
subscription_name = UUID.uuid4()

assert {:ok, _subscription} =
EventStore.subscribe_to_all_streams(subscription_name, self(), concurrency_limit: 2)
EventStore.subscribe_to_all_streams(subscription_name, self(),
concurrency_limit: 2
)

assert {:error, :already_subscribed} =
EventStore.subscribe_to_all_streams(subscription_name, self(), concurrency_limit: 2)
EventStore.subscribe_to_all_streams(subscription_name, self(),
concurrency_limit: 2
)
end

test "should send events to all subscribers" do
Expand Down

0 comments on commit 66d9eda

Please sign in to comment.