From 5eafc53af61f7ee33270972377f9944110c73df5 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 1 Apr 2025 10:30:39 -0700 Subject: [PATCH] Remove value generics feature --- Tests/SwiftFormatTests/PrettyPrint/ValueGenericsTests.swift | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Tests/SwiftFormatTests/PrettyPrint/ValueGenericsTests.swift b/Tests/SwiftFormatTests/PrettyPrint/ValueGenericsTests.swift index b314da1c8..e07ac5b9d 100644 --- a/Tests/SwiftFormatTests/PrettyPrint/ValueGenericsTests.swift +++ b/Tests/SwiftFormatTests/PrettyPrint/ValueGenericsTests.swift @@ -26,8 +26,7 @@ final class ValueGenericsTests: PrettyPrintTestCase { assertPrettyPrintEqual( input: input, expected: expected, - linelength: 20, - experimentalFeatures: [.valueGenerics] + linelength: 20 ) } @@ -51,8 +50,7 @@ final class ValueGenericsTests: PrettyPrintTestCase { assertPrettyPrintEqual( input: input, expected: expected, - linelength: 15, - experimentalFeatures: [.valueGenerics] + linelength: 15 ) } }