From 39a3c4a77b44cd01bca8e58da3ce499f9d33b6d5 Mon Sep 17 00:00:00 2001 From: Bridgerz Date: Mon, 13 Jul 2026 13:54:26 -0700 Subject: [PATCH] Format Move test files to satisfy updated prettier-plugin-move MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Formatting CI job installs @mysten/prettier-plugin-move@latest, and a new plugin release now requires trailing commas in multi-line use lists — retroactively failing the check on files untouched by open PRs. Two-character fix; no code change. --- packages/hashi/tests/mpc_signing_tests.move | 2 +- packages/hashi/tests/withdrawal_queue_tests.move | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/hashi/tests/mpc_signing_tests.move b/packages/hashi/tests/mpc_signing_tests.move index e40577cdf7..abc78f98b0 100644 --- a/packages/hashi/tests/mpc_signing_tests.move +++ b/packages/hashi/tests/mpc_signing_tests.move @@ -12,7 +12,7 @@ use hashi::mpc_signing::{ ELengthMismatch, ENotStale, EAllocationMismatch, - ENotComplete + ENotComplete, }; fun sig(byte: u8): vector { diff --git a/packages/hashi/tests/withdrawal_queue_tests.move b/packages/hashi/tests/withdrawal_queue_tests.move index deaeae2161..fc96bacc70 100644 --- a/packages/hashi/tests/withdrawal_queue_tests.move +++ b/packages/hashi/tests/withdrawal_queue_tests.move @@ -15,7 +15,7 @@ use hashi::{ EOutputBelowDust, EOutputAmountMismatch, EOutputAddressMismatch, - EMinerFeeExceedsMax + EMinerFeeExceedsMax, } }; use sui::clock;