Skip to content

Commit

Permalink
chore(deps): remove spectral (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
DDtKey committed Sep 25, 2023
1 parent bd9152e commit 3251024
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ redis = "0.23.3"
reqwest = { version = "0.11.20", features = ["blocking"] }
serde = { version = "1.0.188", features = [ "derive" ] }
serde_json = "1.0.107"
spectral = "0.6"
tokio = { version = "1", features = ["macros"] }
zookeeper = "0.8"

Expand Down
3 changes: 1 addition & 2 deletions src/dynamodb_local/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ mod tests {
},
Client,
};
use spectral::{assert_that, prelude::*};
use testcontainers::clients;

use crate::dynamodb_local::DynamoDb;
Expand Down Expand Up @@ -77,7 +76,7 @@ mod tests {
.provisioned_throughput(provisioned_throughput)
.send()
.await;
assert_that(&create_table_result).is_ok();
assert!(create_table_result.is_ok());

let req = dynamodb.list_tables().limit(10);
let list_tables_result = req.send().await.unwrap();
Expand Down

0 comments on commit 3251024

Please sign in to comment.