Skip to content

Commit bc9a857

Browse files
authored
Merge pull request #28 from OWASP/upgradeTestDependencies
Update test dependencies
2 parents 43cfb9c + 0a23cad commit bc9a857

20 files changed

+20
-21
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: java
22

33
jdk:
4-
- openjdk7
54
- openjdk8
65
- oraclejdk8
76
# to compile using JDK 9+ we must move from source and target 1.5 to 1.6

jsp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@
7676
<dependency>
7777
<groupId>org.springframework</groupId>
7878
<artifactId>spring-test</artifactId>
79-
<version>3.1.3.RELEASE</version>
79+
<version>5.1.3.RELEASE</version>
8080
<scope>test</scope>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework</groupId>
8484
<artifactId>spring-core</artifactId>
85-
<version>3.1.3.RELEASE</version>
85+
<version>5.1.3.RELEASE</version>
8686
<scope>test</scope>
8787
</dependency>
8888
</dependencies>

jsp/src/test/java/org/owasp/encoder/tag/EncodingTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public abstract class EncodingTagTest extends TestCase {
5454
protected MockHttpServletResponse _response;
5555

5656
/**
57-
* Contructor for the EncodingTagTest
57+
* Constructor for the EncodingTagTest
5858
* @param testName the name of the test
5959
*/
6060
public EncodingTagTest(String testName) {

jsp/src/test/java/org/owasp/encoder/tag/ForCDATATagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForCDATATag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

jsp/src/test/java/org/owasp/encoder/tag/ForCssStringTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForCssStringTag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

jsp/src/test/java/org/owasp/encoder/tag/ForCssUrlTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForCssUrlTag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

jsp/src/test/java/org/owasp/encoder/tag/ForHtmlAttributeTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForHtmlAttributeTag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

jsp/src/test/java/org/owasp/encoder/tag/ForHtmlContentTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForHtmlContentTag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

jsp/src/test/java/org/owasp/encoder/tag/ForHtmlTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForHtmlTag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

jsp/src/test/java/org/owasp/encoder/tag/ForHtmlUnquotedAttributeTagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected void tearDown() throws Exception {
5959
/**
6060
* Test of doTag method, of class ForHtmlUnquotedAttributeTag.
6161
* This is a very simple test that doesn't fully
62-
* excersize/test the encoder - only that the
62+
* exercise/test the encoder - only that the
6363
* tag itself works.
6464
* @throws Exception is thrown if the tag fails.
6565
*/

0 commit comments

Comments
 (0)