We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776cf24 commit 2dceb5dCopy full SHA for 2dceb5d
tests/query_tests.rs
@@ -227,11 +227,10 @@ async fn test_delete() {
227
#[tokio::test]
228
#[serial]
229
async fn test_insert_retrieve_public() {
230
-
231
let config = aws_config::from_env()
232
- .endpoint_url("http://localhost:8000")
233
- .load()
234
- .await;
+ .endpoint_url("http://localhost:8000")
+ .load()
+ .await;
235
236
let client = aws_sdk_dynamodb::Client::new(&config);
237
@@ -249,5 +248,7 @@ async fn test_insert_retrieve_public() {
249
248
.expect("Failed to insert Dan");
250
251
table
252
- .get::<PublicUser>("dan@coderdan.co").await.expect("Failed to get Dan");
253
-}
+ .get::<PublicUser>("dan@coderdan.co")
+ .await
+ .expect("Failed to get Dan");
254
+}
0 commit comments