Skip to content

Commit

Permalink
modify compiler_version in test to be any
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Oct 29, 2023
1 parent f062e3b commit e99d5e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tooling/nargo_toml/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ fn parse_standard_toml() {
[package]
name = "test"
authors = ["kev", "foo"]
compiler_version = "0.1"
compiler_version = "*"
[dependencies]
rand = { tag = "next", git = "https://github.com/rust-lang-nursery/rand"}
Expand All @@ -428,7 +428,7 @@ fn parse_package_toml_no_deps() {
[package]
name = "test"
authors = ["kev", "foo"]
compiler_version = "0.1"
compiler_version = "*"
"#;

assert!(Config::try_from(String::from(src)).is_ok());
Expand Down

0 comments on commit e99d5e6

Please sign in to comment.