Skip to content

Commit 2dceb5d

Browse files
committed
cargo fmt
1 parent 776cf24 commit 2dceb5d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tests/query_tests.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,10 @@ async fn test_delete() {
227227
#[tokio::test]
228228
#[serial]
229229
async fn test_insert_retrieve_public() {
230-
231230
let config = aws_config::from_env()
232-
.endpoint_url("http://localhost:8000")
233-
.load()
234-
.await;
231+
.endpoint_url("http://localhost:8000")
232+
.load()
233+
.await;
235234

236235
let client = aws_sdk_dynamodb::Client::new(&config);
237236

@@ -249,5 +248,7 @@ async fn test_insert_retrieve_public() {
249248
.expect("Failed to insert Dan");
250249

251250
table
252-
.get::<PublicUser>("dan@coderdan.co").await.expect("Failed to get Dan");
253-
}
251+
.get::<PublicUser>("dan@coderdan.co")
252+
.await
253+
.expect("Failed to get Dan");
254+
}

0 commit comments

Comments
 (0)