Skip to content

Commit 00e0fed

Browse files
committed
Update links to use junit5 logo
(cherry picked from commit 4e55e43)
1 parent c2ca731 commit 00e0fed

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="https://junit.org/junit5/assets/img/junit5-logo.png" align="right" width="100">JUnit 5
1+
# <img src="https://junit.org/assets/img/junit5-logo.png" align="right" width="100">JUnit 5
22

33
This repository is the home of _JUnit 5_.
44

documentation/documentation.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ tasks {
494494
}
495495
from(inputDir) {
496496
filesMatching("**/*.html") {
497-
val favicon = "<link rel=\"icon\" type=\"image/png\" href=\"https://junit.org/junit5/assets/img/junit5-logo.png\">"
497+
val favicon = "<link rel=\"icon\" type=\"image/png\" href=\"https://junit.org/assets/img/junit5-logo.png\">"
498498
filter { line ->
499499
var result = if (line.startsWith("<head>")) line.replace("<head>", "<head>$favicon") else line
500500
externalModulesWithoutModularJavadoc.forEach { (moduleName, baseUrl) ->

documentation/src/docs/asciidoc/docinfos/docinfo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<link rel="icon" type="image/png" href="https://junit.org/junit5/assets/img/junit5-logo.png" />
1+
<link rel="icon" type="image/png" href="https://junit.org/assets/img/junit5-logo.png" />
22
<style>
33
/* Tocbot dynamic TOC, works with tocbot 3.0.2 */
44
/* Source: https://github.com/asciidoctor/asciidoctor/issues/699#issuecomment-321066006 */

gradle/plugins/common/src/main/kotlin/junitbuild.publishing-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ publishing {
5959
name.set(provider {
6060
project.description ?: "${project.group}:${project.name}"
6161
})
62-
url = "https://junit.org/junit5/"
62+
url = "https://junit.org/"
6363
scm {
6464
connection = "scm:git:git://github.com/junit-team/junit5.git"
6565
developerConnection = "scm:git:git://github.com/junit-team/junit5.git"

platform-tests/src/test/java/org/junit/platform/commons/support/conversion/ConversionSupportTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void convertsStringToURI() {
261261

262262
@Test
263263
void convertsStringToURL() throws Exception {
264-
assertConverts("https://junit.org/junit5", URL.class, URI.create("https://junit.org/junit5").toURL());
264+
assertConverts("https://junit.org", URL.class, URI.create("https://junit.org").toURL());
265265
}
266266

267267
// --- java.time -----------------------------------------------------------

0 commit comments

Comments
 (0)