Skip to content

Commit

Permalink
Reformat and license header [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
harawata committed Nov 19, 2024
1 parent b9bdbd1 commit ff91649
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2009-2023 the original author or authors.
* Copyright 2009-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -58,7 +58,8 @@ void shouldGetAUser(LocalCacheScope localCacheScope) {
Object a2 = r.get("a2");
Assertions.assertEquals(String.class, a1.getClass());
Assertions.assertEquals(String.class, a2.getClass());
Assertions.assertSame(a1, a2, "The result should be put into local cache regardless of localCacheScope setting.");
Assertions.assertSame(a1, a2,
"The result should be put into local cache regardless of localCacheScope setting.");
}
} finally {
// Reset the scope for other tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2009-2022 the original author or authors.
* Copyright 2009-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit ff91649

Please sign in to comment.