Removed branches that are now unused (#3589)

diff --git a/tests/hazmat/primitives/test_aes.py b/tests/hazmat/primitives/test_aes.py
index a130e05..a6b1e5f 100644
--- a/tests/hazmat/primitives/test_aes.py
+++ b/tests/hazmat/primitives/test_aes.py
@@ -318,7 +318,6 @@
         encryptor.finalize()
 
         if (
-            backend.name == "openssl" and
             backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 and
             not backend._lib.CRYPTOGRAPHY_IS_LIBRESSL
         ):
@@ -375,7 +374,6 @@
         tag = encryptor.tag
 
         if (
-            backend.name == "openssl" and
             backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 and
             not backend._lib.CRYPTOGRAPHY_IS_LIBRESSL
         ):
@@ -399,7 +397,6 @@
         decryptor.authenticate_additional_data(aad)
 
         if (
-            backend.name == "openssl" and
             backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 and
             not backend._lib.CRYPTOGRAPHY_IS_LIBRESSL
         ):