From 3cd081c89598055e69a7040a09c5c718ade3abee Mon Sep 17 00:00:00 2001 From: Ryan Liang Date: Mon, 2 Oct 2023 11:12:41 -0700 Subject: [PATCH] Fix lint Signed-off-by: Ryan Liang --- .../org/opensearch/security/authtoken/jwt/JwtVendorTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/opensearch/security/authtoken/jwt/JwtVendorTest.java b/src/test/java/org/opensearch/security/authtoken/jwt/JwtVendorTest.java index d38f517457..663c4fd1e2 100644 --- a/src/test/java/org/opensearch/security/authtoken/jwt/JwtVendorTest.java +++ b/src/test/java/org/opensearch/security/authtoken/jwt/JwtVendorTest.java @@ -165,8 +165,8 @@ public void testCreateJwtWithExceededExpiry() throws Exception { } }); Assert.assertEquals( - "java.lang.Exception: The provided expiration time exceeds the maximum allowed duration of 600 seconds", - exception.getMessage() + "java.lang.Exception: The provided expiration time exceeds the maximum allowed duration of 600 seconds", + exception.getMessage() ); }