Skip to content

Commit cafa00e

Browse files
committed
Leesbaarder
1 parent 4b0753a commit cafa00e

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

test/ProgressOnderwijsUtils.Tests/HtmlDslGenerator.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -246,19 +246,13 @@ public static class AttributeConstructionMethods
246246
"""
247247
),
248248

249-
AssertFileExistsAndApproveContent(
250-
AttributeLookupTable_GeneratedOutputFilePath,
251-
GenerateAttributeLookupTable(
252-
elements.Select(el => (el.elementName, el.attributes)).ToArray()
253-
)
254-
),
249+
AssertFileExistsAndApproveContent(AttributeLookupTable_GeneratedOutputFilePath, GenerateAttributeLookupTable(elements.Select(el => (el.elementName, el.attributes)).ToArray())),
255250
}.WhereNotNull().ToArray();
256251

257252
PAssert.That(() => diff.None());
258253
return;
259254

260-
string GenerateAttributeLookupTable(
261-
(string elementName, DistinctArray<string> attributes)[] elementsWithAttributes)
255+
string GenerateAttributeLookupTable((string elementName, DistinctArray<string> attributes)[] elementsWithAttributes)
262256
{
263257
// Generate lookup entries for each element
264258
var elementLookups = elementsWithAttributes.Select(el => {

0 commit comments

Comments
 (0)