From c3fc6c9a807fc2916dd91a1abc0089f14da91939 Mon Sep 17 00:00:00 2001 From: Shawn Xie Date: Wed, 17 Jan 2024 14:35:58 -0500 Subject: [PATCH] fix windows - reorder maxAmt --- src/test/app/MPToken_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/app/MPToken_test.cpp b/src/test/app/MPToken_test.cpp index f84bdea526f..aa13f01a4f3 100644 --- a/src/test/app/MPToken_test.cpp +++ b/src/test/app/MPToken_test.cpp @@ -766,7 +766,7 @@ class MPToken_test : public beast::unit_test::suite MPTTester mptAlice(env, alice, {.holders = {&bob}}); - mptAlice.create({.ownerCount = 1, .holderCount = 0, .maxAmt = 100}); + mptAlice.create({.maxAmt = 100, .ownerCount = 1, .holderCount = 0}); mptAlice.authorize({.account = &bob});