Skip to content

Commit

Permalink
Fix typo and non-public tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwiddis committed Jan 31, 2021
1 parent 4a5fe88 commit 4a2b0f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Java Native Access - JNA](https://github.com/java-native-access/jna/raw/master/www/images/jnalogo.jpg "Java Native Access - JNA")

[![Github Actions Build Status](https://github.com/java-native-access/jna/workflows/Java%20CI/badge.svg)](https://github.com/ojava-native-access/jna/actions?query=workflow%3A%22Java+CI%22)
[![Github Actions Build Status](https://github.com/java-native-access/jna/workflows/Java%20CI/badge.svg)](https://github.com/java-native-access/jna/actions?query=workflow%3A%22Java+CI%22)
[![Travis Build Status](https://travis-ci.org/java-native-access/jna.svg?branch=master)](https://travis-ci.org/java-native-access/jna)
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/j6vmpjrw5iktb8iu/branch/master?svg=true)](https://ci.appveyor.com/project/dblock/jna-gsxuq/branch/master)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void testGetUdpStatistics() {
}

@Test
void testTCPv4Connections() {
public void testTCPv4Connections() {
// Get size needed
IntByReference sizePtr = new IntByReference();
assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER,
Expand Down Expand Up @@ -230,7 +230,7 @@ void testTCPv4Connections() {
}

@Test
void testTCPv6Connections() {
public void testTCPv6Connections() {
// Get size needed
IntByReference sizePtr = new IntByReference();
assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER,
Expand Down Expand Up @@ -261,7 +261,7 @@ void testTCPv6Connections() {
}

@Test
void testUDPv4Connections() {
public void testUDPv4Connections() {
// Get size needed
IntByReference sizePtr = new IntByReference();
assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER,
Expand Down Expand Up @@ -289,7 +289,7 @@ void testUDPv4Connections() {
}

@Test
void testUDPv6Connections() {
public void testUDPv6Connections() {
// Get size needed
IntByReference sizePtr = new IntByReference();
assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER,
Expand Down

0 comments on commit 4a2b0f0

Please sign in to comment.