Skip to content

Commit b5fa900

Browse files
author
runzexia
authored
Merge pull request kubesphere#23 from FeynmanZhou/master
fix typo
2 parents 02bfa76 + 478d83a commit b5fa900

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Jenkinsfile-online

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pipeline {
1717
DOCKERHUB_NAMESPACE = 'docker_username'
1818
GITHUB_ACCOUNT = 'kubesphere'
1919
APP_NAME = 'devops-java-sample'
20-
SONAR_CREDENTIAL_ID= 'sonar-token'
20+
SONAR_CREDENTIAL_ID = 'sonar-token'
2121
}
2222

2323
stages {

src/main/java/io/kubesphere/devops/HelloWorldController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public class HelloWorldController {
1414

1515
@RequestMapping("/")
1616
public String sayHello() {
17-
return "Really appreaciate your star, that's the power of our life.";
17+
return "Really appreciate your star, that's the power of our life.";
1818
}
1919
}

src/test/java/io/kubesphere/devops/HelloWorldControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ public class HelloWorldControllerTest {
88

99
@Test
1010
public void testSayHello() {
11-
assertEquals("Really appreaciate your star, that's the power of our life.", new HelloWorldController().sayHello());
11+
assertEquals("Really appreciate your star, that's the power of our life.", new HelloWorldController().sayHello());
1212
}
1313
}

0 commit comments

Comments
 (0)