Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit d83248b

Browse files
committed
#127 - Replaced test meta from +junit to +tests
1 parent 6cf05ae commit d83248b

File tree

9 files changed

+17
-12
lines changed

9 files changed

+17
-12
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ SOFTWARE
9797
<dependency>
9898
<groupId>org.eolang</groupId>
9999
<artifactId>eo-runtime</artifactId>
100-
<version>0.29.1</version>
100+
<version>0.29.4</version>
101101
</dependency>
102102
<dependency>
103103
<groupId>org.junit.jupiter</groupId>
@@ -129,7 +129,7 @@ SOFTWARE
129129
<plugin>
130130
<groupId>org.eolang</groupId>
131131
<artifactId>eo-maven-plugin</artifactId>
132-
<version>0.29.1</version>
132+
<version>0.29.4</version>
133133
<executions>
134134
<execution>
135135
<id>compile</id>

renovate.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33
"extends": [
44
"config:base"
55
],
6-
"ignoreDeps": ["maven-compiler-plugin"]
7-
}
6+
"packageRules": [
7+
{
8+
"matchPackageNames": ["maven-compiler-plugin"],
9+
"allowedVersions": "3.8.1"
10+
}
11+
]
12+
}

src/test/eo/org/eolang/math/angle-tests.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
+alias org.eolang.math.angle
2525
+alias org.eolang.math.number
2626
+home https://github.com/objectionary/eo-math
27-
+junit
2827
+package org.eolang.math
28+
+tests
2929
+version 0.0.0
3030

3131
[] > sin-zero

src/test/eo/org/eolang/math/e-tests.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
+alias org.eolang.math.e
2424
+home https://github.com/objectionary/eo-math
25-
+junit
2625
+package org.eolang.math
26+
+tests
2727
+version 0.0.0
2828

2929
[] > the-eulers-number-is-correct

src/test/eo/org/eolang/math/integral-tests.eo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
+alias org.eolang.math.integral
2525
+alias org.eolang.math.number
2626
+home https://github.com/objectionary/eo-math
27-
+junit
2827
+package org.eolang.math
28+
+tests
2929
+version 0.0.0
3030

3131
# @todo #99:30min. To fix failed tests.
@@ -75,7 +75,7 @@
7575
0.0000001
7676

7777
# @todo #93:30min This test fails due to
78-
# incorrect choose of steps in the
78+
# Incorrect choose of steps in the
7979
# integral implementation. For excluding
8080
# this error, Simpson's rule for
8181
# determing n should be written.

src/test/eo/org/eolang/math/number-tests.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
+alias org.eolang.math.number
2727
+alias org.eolang.math.pi
2828
+home https://github.com/objectionary/eo-math
29-
+junit
3029
+package org.eolang.math
30+
+tests
3131
+version 0.0.0
3232

3333
# @todo #99:30min. To fix failed tests.

src/test/eo/org/eolang/math/pi-tests.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
+alias org.eolang.math.pi
2424
+home https://github.com/objectionary/eo-math
25-
+junit
2625
+package org.eolang.math
26+
+tests
2727
+version 0.0.0
2828

2929
[] > the-pi-number-is-correct

src/test/eo/org/eolang/math/random-tests.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
+alias org.eolang.hamcrest.assert-that
2424
+alias org.eolang.math.random
2525
+home https://github.com/objectionary/eo-math
26-
+junit
2726
+package org.eolang.math
27+
+tests
2828
+version 0.0.0
2929

3030
# @todo #105:30min. Remove nop objects. All of these three tests

src/test/eo/org/eolang/math/series-tests.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
+alias org.eolang.math.series
2424
+alias org.eolang.hamcrest.assert-that
2525
+home https://github.com/objectionary/eo-math
26-
+junit
2726
+package org.eolang.math
27+
+tests
2828
+version 0.0.0
2929

3030
[] > max-of-empty-array

0 commit comments

Comments
 (0)