Skip to content

Commit

Permalink
fix(commands): fix graph test being inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
radstevee committed Dec 29, 2024
1 parent 5080189 commit 4870143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/commands/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,6 @@ async fn graph_test() {

assert_eq!(literal_node.node_type(), CommandNodeType::Literal);
assert_eq!(arg_node.node_type(), CommandNodeType::Argument);
assert!(!arg_node.is_executable());
assert!(literal_node.is_executable());
assert!(arg_node.is_executable());
assert!(!literal_node.is_executable());
}

0 comments on commit 4870143

Please sign in to comment.