From 228b0d354adb97666b7a87a0dc92ab5e85a40879 Mon Sep 17 00:00:00 2001 From: Mariusz Schimke Date: Tue, 5 Sep 2023 21:39:55 +0200 Subject: [PATCH] Add a comment --- test/GiGraph.Dot.Types.Tests/Enums/DotEnumsTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/GiGraph.Dot.Types.Tests/Enums/DotEnumsTest.cs b/test/GiGraph.Dot.Types.Tests/Enums/DotEnumsTest.cs index 1939cef5..76da4ce2 100644 --- a/test/GiGraph.Dot.Types.Tests/Enums/DotEnumsTest.cs +++ b/test/GiGraph.Dot.Types.Tests/Enums/DotEnumsTest.cs @@ -14,6 +14,7 @@ public class DotEnumsTest public static IEnumerable GetAllEnumTypes() { + // get only the enum types used as attribute values (they belong to the Types namespace) var types = Assembly.LoadFrom("GiGraph.Dot.dll")! .GetTypes() .Where(t => t.IsEnum)