Skip to content

Commit

Permalink
Merge pull request #117 from achilleasa/fix-formatting-warnings-in-tests
Browse files Browse the repository at this point in the history
Fix formatting warnings in tests and update ci workflow
  • Loading branch information
achilleasa committed Mar 25, 2024
2 parents 8c86e76 + e0b159c commit 0feaa92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Dart SDK
uses: dart-lang/setup-dart@v1
Expand Down
3 changes: 2 additions & 1 deletion test/lib/exchange_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ main({bool enableLogger = true}) {
// Use the second client to define the queue and the exchange in advance
Channel channel2 = await client2.channel();
Queue queue = await channel2.queue("q_test_ro");
Exchange exchange = await channel2.exchange("exc_test_ro", ExchangeType.FANOUT);
Exchange exchange =
await channel2.exchange("exc_test_ro", ExchangeType.FANOUT);
queue.bind(exchange, '');

// Pretend we are a RO consumer that cannot declare the exchange but
Expand Down

0 comments on commit 0feaa92

Please sign in to comment.