Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
drteeth committed Oct 13, 2024
1 parent bbef402 commit 3ccd506
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions test/subscriptions/concurrent_subscription_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,10 @@ 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 3ccd506

Please sign in to comment.