Skip to content

Commit

Permalink
Use dash-case across tests
Browse files Browse the repository at this point in the history
Signed-off-by: Tomasz Pietrek <[email protected]>
  • Loading branch information
Jarema committed Jul 25, 2023
1 parent 97e3308 commit eb01e67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions async-nats/tests/object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ mod object_store {
let client = async_nats::connect("demo.nats.io").await.unwrap();

let mut test_commands = client
.subscribe("tests.object_store.default_bucket.>".into())
.subscribe("tests.object-store.default-bucket.>".into())
.await
.unwrap();

Expand Down Expand Up @@ -392,7 +392,7 @@ mod object_store {
async fn custom_bucket() {
let client = async_nats::connect("demo.nats.io").await.unwrap();
let mut commands = client
.subscribe("tests.object_store.custom_bucket.>".into())
.subscribe("tests.object-store.custom-bucket.>".into())
.await
.unwrap();
let create = commands.next().await.unwrap();
Expand Down Expand Up @@ -433,7 +433,7 @@ mod object_store {
}

let mut commands = client
.subscribe("tests.object_store.object.>".into())
.subscribe("tests.object-store.put-object.>".into())
.await
.unwrap();

Expand Down

0 comments on commit eb01e67

Please sign in to comment.