Skip to content

Commit 4e177ce

Browse files
Merge branch 'dev' into df/#891_gradle8x
# Conflicts: # CHANGELOG.md
2 parents fa7f62d + e9cd2b0 commit 4e177ce

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212

1313
### Changed
1414
- `SqlIdCoordinateSource.createCooridinateValue` now throws an exception when the coordinate can not be built [#911](https://github.com/ie3-institute/PowerSystemDataModel/issues/911)
15+
- CleanUp `BufferedCsvWriterTest` only after all tests are completed [#809](https://github.com/ie3-institute/PowerSystemDataModel/issues/809)
16+
- Update gradle to version 8.4 [#891](https://github.com/ie3-institute/PowerSystemDataModel/issues/891)
1517

1618
## [4.0.0] - 2023-08-01
1719

@@ -32,8 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3234
- Use nio paths instead of strings for file path [#723](https://github.com/ie3-institute/PowerSystemDataModel/issues/723)
3335
- Data source will throw an exceptions instead of returning an empty optionals [#707](https://github.com/ie3-institute/PowerSystemDataModel/issues/707)
3436
- Improving `ValidationUtils` [#758](https://github.com/ie3-institute/PowerSystemDataModel/issues/758)
35-
- Update gradle to version 8.4 [#891](https://github.com/ie3-institute/PowerSystemDataModel/issues/891)
36-
3737

3838
## [3.0.0] - 2023-02-16
3939

src/test/groovy/edu/ie3/datamodel/io/csv/BufferedCsvWriterTest.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ package edu.ie3.datamodel.io.csv
88
import edu.ie3.datamodel.exceptions.FileException
99
import edu.ie3.datamodel.exceptions.SinkException
1010
import edu.ie3.util.io.FileIOUtils
11-
import org.apache.commons.io.FilenameUtils
1211
import spock.lang.Shared
1312
import spock.lang.Specification
1413

@@ -23,7 +22,7 @@ class BufferedCsvWriterTest extends Specification {
2322
tmpDirectory = Files.createTempDirectory("psdm_csv_buffered_writer_")
2423
}
2524

26-
def cleanup() {
25+
def cleanupSpec() {
2726
FileIOUtils.deleteRecursively(tmpDirectory)
2827
}
2928

0 commit comments

Comments
 (0)