simplify
diff --git a/tobago-core/src/test/java/org/apache/myfaces/tobago/component/AttributesOfGeneratedUIComponentsUnitTest.java b/tobago-core/src/test/java/org/apache/myfaces/tobago/component/AttributesOfGeneratedUIComponentsUnitTest.java
index ef3395a..36deb06 100644
--- a/tobago-core/src/test/java/org/apache/myfaces/tobago/component/AttributesOfGeneratedUIComponentsUnitTest.java
+++ b/tobago-core/src/test/java/org/apache/myfaces/tobago/component/AttributesOfGeneratedUIComponentsUnitTest.java
@@ -48,9 +48,8 @@
         if (property.equals("for")) {
           property = "forValue";
         }
-        final Attributes attribute;
         try {
-          attribute = Attributes.valueOf(property);
+          Attributes.valueOf(property);
         } catch (final IllegalArgumentException e) {
           Assertions.fail(e.getMessage());
         }