Skip to content

Commit

Permalink
also revert confusing test method display name
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Aug 30, 2023
1 parent 1064001 commit 6f58712
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class LinuxErrnoTest {

@DisplayName("make sure no errno method is not a stub")
@DisplayName("make sure method is not a stub")
@ParameterizedTest(name = "{0}()")
@MethodSource("errnoNameProvider")
public void testErrnoIsNotZero(String methodName) throws ReflectiveOperationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class LinuxErrnoTest {

@DisplayName("make sure no errno method is not a stub")
@DisplayName("make sure method is not a stub")
@ParameterizedTest(name = "{0}()")
@MethodSource("errnoNameProvider")
public void testErrnoIsNotZero(String methodName) throws ReflectiveOperationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

public class MacErrnoTest {

@DisplayName("make sure errno method is not a stub")
@DisplayName("make sure method is not a stub")
@ParameterizedTest(name = "{0}()")
@MethodSource("errnoNameProvider")
public void testErrnoIsNotZero(String methodName) throws ReflectiveOperationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class WinErrnoTest {

@DisplayName("make sure errno method is not a stub")
@DisplayName("make sure method is not a stub")
@ParameterizedTest(name = "{0}()")
@MethodSource("errnoNameProvider")
public void testErrnoIsNotZero(String methodName) throws ReflectiveOperationException {
Expand Down

0 comments on commit 6f58712

Please sign in to comment.