diff --git a/crates/uplc/tests/pretty_tests.rs b/crates/uplc/tests/pretty_tests.rs index 9d864c9e..d516d569 100644 --- a/crates/uplc/tests/pretty_tests.rs +++ b/crates/uplc/tests/pretty_tests.rs @@ -55,11 +55,11 @@ fn constant_pair_unit_string() { Type::Unit, Type::String, Constant::Unit.into(), - Constant::String("hello universe".into()).into(), + Constant::String("hello universe\0".into()).into(), ) .into(), ), - "(con (pair unit string) ((), \"hello universe\"))", + "(con (pair unit string) ((), \"hello universe\\x00\"))", ) }