Skip to content

Commit

Permalink
tests: fix spelling of methods in StatTest
Browse files Browse the repository at this point in the history
Acked-by: Lea Morschel
Target: master
  • Loading branch information
kofemann committed Jan 13, 2022
1 parent 67da932 commit 20968d2
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions core/src/test/java/org/dcache/nfs/vfs/StatTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,67 +86,67 @@ public void testSerialization() throws Exception {
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedNotDefeinedGetDev() {
public void testNotDefinedGetDev() {
new Stat().getDev();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetIno() {
public void testNotDefinedGetIno() {
new Stat().getIno();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetMode() {
public void testNotDefinedGetMode() {
new Stat().getMode();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetNlink() {
public void testNotDefinedGetNlink() {
new Stat().getNlink();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetUid() {
public void testNotDefinedGetUid() {
new Stat().getUid();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetGid() {
public void testNotDefinedGetGid() {
new Stat().getGid();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetRdev() {
public void testNotDefinedGetRdev() {
new Stat().getRdev();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetSize() {
public void testNotDefinedGetSize() {
new Stat().getSize();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetATime() {
public void testNotDefinedGetATime() {
new Stat().getATime();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetMTime() {
public void testNotDefinedGetMTime() {
new Stat().getMTime();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetCTime() {
public void testNotDefinedGetCTime() {
new Stat().getCTime();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetGeneration() {
public void testNotDefinedGetGeneration() {
new Stat().getGeneration();
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedType() {
public void testNotDefinedType() {
new Stat().type();
}

Expand All @@ -158,7 +158,7 @@ public void testGetDev() {
}

@Test(expected = IllegalStateException.class)
public void testNotDefeinedGetBtime() {
public void testNotDefinedGetBtime() {
new Stat().getBTime();
}

Expand Down

0 comments on commit 20968d2

Please sign in to comment.