From f0e1095ea90ce9f980ec34ce2d1493925423cc98 Mon Sep 17 00:00:00 2001 From: Gabriel Omar Cotelli Date: Tue, 18 Jun 2024 20:47:02 -0300 Subject: [PATCH] Update test --- source/Buoy-Collections-Tests/StringExtensionsTest.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Buoy-Collections-Tests/StringExtensionsTest.class.st b/source/Buoy-Collections-Tests/StringExtensionsTest.class.st index e20b276..39ae655 100644 --- a/source/Buoy-Collections-Tests/StringExtensionsTest.class.st +++ b/source/Buoy-Collections-Tests/StringExtensionsTest.class.st @@ -111,7 +111,7 @@ StringExtensionsTest >> testFormatWhenInvalid [ self should: [ 'Invalid {1}' format: #( ) ] raise: SubscriptOutOfBounds; should: [ 'Invalid {date}' format: #( 1 2 ) ] raise: Error; - should: [ '{ 1 }' format: #( 1 ) ] raise: Error; + should: [ '{ _1_ }' format: #( 1 ) ] raise: Error; should: [ '{ date }' format: { 'date' -> 1 } asDictionary ] raise: NotFound ]