Skip to content

Commit 1d5e931

Browse files
committed
Update changes
1 parent 7e9fc30 commit 1d5e931

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

CHANGES.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,8 @@
44

55
### Improvements
66

7-
* Java 1.8 or newer ([Issue #331](https://github.com/hamcrest/JavaHamcrest/issues/331)).
8-
9-
TBD
10-
11-
### Bugfixes
12-
13-
TBD
14-
15-
## Version 2.3 (Unreleased)
16-
17-
### Improvements
7+
* Java 1.8 or newer ([Issue #331](https://github.com/hamcrest/JavaHamcrest/issues/331), [PR #411](https://github.com/hamcrest/JavaHamcrest/issues/411)).
8+
* FileMatchersTest simplification ([PR #389](https://github.com/hamcrest/JavaHamcrest/issues/389))
189

1910
TBD
2011

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Contributors:
5151
* Magne Rasmussen
5252
* David Saff
5353
* Tom Denley
54+
* Joe Schmetzer
5455

5556
Also, thanks to everyone who has worked on DynaMock, nMock, jMock, EasyMock and MiniMock! These libraries inspired Hamcrest.
5657

hamcrest/src/test/java/org/hamcrest/io/FileMatchersTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ public class FileMatchersTest extends AbstractMatcherTest {
1818
@Override
1919
protected void setUp() throws IOException {
2020
directory = Files.createTempDirectory("myDir").toFile();
21-
assertTrue("deleting " + directory, true);
22-
assertTrue("mkdir " + directory, true);
23-
2421
file = new File(directory, "myFile");
2522
file.createNewFile();
2623
}

0 commit comments

Comments
 (0)