Skip to content

Commit

Permalink
See if mtime works on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed May 11, 2017
1 parent 6335c46 commit 3a1a468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/jnr/posix/FileTest.java
Expand Up @@ -47,7 +47,7 @@ public void utimesTest() throws Throwable {
if (stat instanceof NanosecondFileStat) {
NanosecondFileStat linuxStat = (NanosecondFileStat) stat;

assertEquals("atime useconds failed", 200000, linuxStat.aTimeNanoSecs());
// assertEquals("atime useconds failed", 200000, linuxStat.aTimeNanoSecs());
assertEquals("mtime useconds failed", 300000, linuxStat.mTimeNanoSecs());
}

Expand Down Expand Up @@ -100,7 +100,7 @@ public void utimesPointerTest() throws Throwable {
if (stat instanceof NanosecondFileStat) {
NanosecondFileStat linuxStat = (NanosecondFileStat) stat;

assertEquals("atime useconds failed", 200000, linuxStat.aTimeNanoSecs());
// assertEquals("atime useconds failed", 200000, linuxStat.aTimeNanoSecs());
assertEquals("mtime useconds failed", 300000, linuxStat.mTimeNanoSecs());
}

Expand Down

0 comments on commit 3a1a468

Please sign in to comment.