From 68dd624482c16ab4dfb5f8c42f064183f01623d1 Mon Sep 17 00:00:00 2001 From: Junkil Park Date: Thu, 10 Aug 2023 21:06:26 -0700 Subject: [PATCH] Commented out the `test_only` for the struct FakeCons --- aptos-move/framework/aptos-stdlib/sources/string_utils.move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aptos-move/framework/aptos-stdlib/sources/string_utils.move b/aptos-move/framework/aptos-stdlib/sources/string_utils.move index 41d953902e32f..c7f239b70de0e 100644 --- a/aptos-move/framework/aptos-stdlib/sources/string_utils.move +++ b/aptos-move/framework/aptos-stdlib/sources/string_utils.move @@ -107,7 +107,7 @@ module aptos_std::string_utils { native_format_list(&b"a = {} b = {} c = {}", &l); } - #[test_only] + /// #[test_only] struct FakeCons has copy, drop, store { car: T, cdr: N,