Skip to content

Commit

Permalink
CLI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-schott committed Jan 3, 2024
1 parent 902387d commit 28dae76
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
25 changes: 23 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compiler/ast/src/functions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub mod mode;
pub use mode::*;

use crate::{Block, FunctionStub, Identifier, Node, NodeID, TupleType, Type};
use leo_span::{sym, Span, Symbol};
use leo_span::{Span, Symbol};

use serde::{Deserialize, Serialize};
use std::fmt;
Expand Down
3 changes: 3 additions & 0 deletions leo/cli/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,11 @@ mod tests {
CLI,
};
use leo_span::symbol::create_session_if_not_set_then;
use serial_test::serial;
use std::env::temp_dir;

#[test]
#[serial]
fn nested_network_dependency_run_test() {
// Set current directory to temporary directory
let temp_dir = temp_dir();
Expand Down Expand Up @@ -186,6 +188,7 @@ mod tests {
}

#[test]
#[serial]
fn nested_local_dependency_run_test() {
// Set current directory to temporary directory
let temp_dir = temp_dir();
Expand Down

0 comments on commit 28dae76

Please sign in to comment.