From e4d1a4abd883fca5d1a1a6644f72d0efd38593b3 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Mon, 21 Sep 2020 10:40:29 +1000 Subject: [PATCH] Fix min UTxO fail in CLI integration test --- .../src/Test/Integration/Scenario/CLI/Shelley/Transactions.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Transactions.hs b/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Transactions.hs index f22aeaebf42..a55d81ce755 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Transactions.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Transactions.hs @@ -1,5 +1,6 @@ {-# LANGUAGE AllowAmbiguousTypes #-} {-# LANGUAGE DataKinds #-} +{-# LANGUAGE NumericUnderscores #-} {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeApplications #-} @@ -303,7 +304,7 @@ spec = describe "SHELLEY_CLI_TRANSACTIONS" $ do it "TRANSMETA_CREATE_01 - Transaction with metadata via CLI" $ \ctx -> do (wSrc, wDest) <- (,) <$> fixtureWallet ctx <*> emptyWallet ctx - let amt = 100000 + let amt = 10_000_000 let md = Just "{ \"1\": \"hello\" }" let expected = Just (ApiT (TxMetadata (MD.MetaData (Map.singleton 1 (MD.S "hello")))))