diff --git a/tests/generator/BGenTests.cs b/tests/generator/BGenTests.cs index 47b8a5c3d3a1..a83493fb5a8e 100644 --- a/tests/generator/BGenTests.cs +++ b/tests/generator/BGenTests.cs @@ -245,8 +245,7 @@ public void EditorBrowsable (Profile profile) var bgen = BuildFile (profile, false, true, "tests/editor-browsable.cs"); var types = bgen.ApiAssembly.MainModule.Types; - var hasEditorBrowsableAttribute = new Func ((ICustomAttributeProvider provider) => - { + var hasEditorBrowsableAttribute = new Func ((ICustomAttributeProvider provider) => { return provider.CustomAttributes.Any (v => v.AttributeType.Name == "EditorBrowsableAttribute"); });