diff --git a/Cargo.lock b/Cargo.lock index 1e9c738..7c5006d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -74,7 +74,7 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "babel_nar" -version = "0.25.0" +version = "0.25.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 437bef7..56c26c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "babel_nar" -version = "0.25.0" +version = "0.25.1" edition = "2021" description = """ Implementation and application supports of the NAVM model diff --git a/src/bin/babelnar_cli/vm_config.rs b/src/bin/babelnar_cli/vm_config.rs index 99fe6f8..340f07e 100644 --- a/src/bin/babelnar_cli/vm_config.rs +++ b/src/bin/babelnar_cli/vm_config.rs @@ -846,9 +846,9 @@ pub mod tests { ..Default::default() } r#"{ - "shortFloatEpoch": 0.1, + "shortFloatEpoch": 1.0, }"# => LaunchConfig { - short_float_epoch: Some(Float::NAN), + short_float_epoch: Some(1.0), ..Default::default() } }