From 608a4974218b5f27680fe0716e3296f88395de11 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 15 Jun 2024 16:41:11 +0530 Subject: [PATCH] forgot to port test to use new API --- tools/cmd/at/main_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cmd/at/main_test.go b/tools/cmd/at/main_test.go index bc16f7b53..19aeac6e0 100644 --- a/tools/cmd/at/main_test.go +++ b/tools/cmd/at/main_test.go @@ -58,7 +58,7 @@ func TestCommandToJSON(t *testing.T) { func TestRCSerialization(t *testing.T) { io_data := rc_io_data{} - err := create_serializer("", "", &io_data) + err := create_serializer(password{"", false}, "", &io_data) if err != nil { t.Fatal(err) } @@ -85,7 +85,7 @@ func TestRCSerialization(t *testing.T) { if err != nil { t.Fatal(err) } - err = create_serializer("tpw", pubkey, &io_data) + err = create_serializer(password{"tpw", true}, pubkey, &io_data) if err != nil { t.Fatal(err) }