Skip to content

Commit

Permalink
ci: fix typo in test file; fix assert statements
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed <[email protected]>
  • Loading branch information
ahmedtadde committed Dec 27, 2023
1 parent 3fd230d commit 39d635f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/wash-lib/src/cli/claims.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@ mod test {
assert!(cmd.metadata.blob_store);
assert!(cmd.metadata.logging);
assert_eq!(cmd.metadata.name.unwrap(), "MyActor");
assert_eq!(!cmd.metadata.custom_caps.len(), 2);
assert_eq!(cmd.metadata.custom_caps.len(), 2);
assert!(cmd
.metadata
.custom_caps
Expand All @@ -1518,7 +1518,7 @@ mod test {
.metadata
.custom_caps
.contains(&"lexcorp:quantum-simulator".to_string())); // from project_config
assert_eq!(!cmd.metadata.tags.len(), 3);
assert_eq!(cmd.metadata.tags.len(), 3);
assert!(cmd.metadata.tags.contains(&"test-tag".to_string()));
assert!(cmd.metadata.tags.contains(&"test".to_string())); // from project_config
assert!(cmd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "0.1.0"
revision = 666

[actor]
claims = ["wasmcloud:httpserver", "wasmcloud:httclient", "lexcorp:quantum-simulator"]
claims = ["wasmcloud:httpserver", "wasmcloud:httpclient", "lexcorp:quantum-simulator"]
registry = "localhost:8080"
push_insecure = false
key_directory = "./keys"
Expand Down

0 comments on commit 39d635f

Please sign in to comment.