Skip to content

Commit

Permalink
#30420 include in 23.10.24 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Oct 22, 2024
1 parent 5d41d73 commit 45b9d8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions dotCMS/hotfix_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,4 @@ This maintenance release includes the following code fixes:
156. https://github.com/dotCMS/core/issues/28576 : GraphQL __icon__ field violates GraphQL introspection convention prohibiting __ prefixes #28576
157. https://github.com/dotCMS/core/issues/28855 : When page is locked, hover text still says "Lock Page" #28855
158. https://github.com/dotCMS/core/issues/28735 : Locked page error text wrapping incorrectly #28735
159. https://github.com/dotCMS/core/issues/30420 : Fix Test CircuitBreakerUrlTest.testGet and RemoteAnnouncementsLoaderIntegrationTest.TestAnnouncementsLoader #30420
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void test_that_vanity_url_filter_handles_proxy_requests() throws Exceptio
String content = FileUtil.read(tmp);
assert (content != null);
assert (content.contains("All rights reserved"));
assert (content.contains("<meta property=\"og:url\" content=\"https://www.dotcms.com/\">"));
assert (content.contains("content=\"dotCMS\""));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public void testGet() {
for (int i = 0; i < 10; i++) {
try {
String x = new CircuitBreakerUrl(goodUrl, 2000).doString();
assert (x.contains("/application/themes/dotcms/js/bootstrap.min.js"));
assert (x.contains("content=\"dotCMS\""));

} catch (Exception e) {
assert (e instanceof CircuitBreakerOpenException);
Expand Down

0 comments on commit 45b9d8a

Please sign in to comment.