From 4a2b0f081e48afc8acca71244d79d5ee625115ba Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Sat, 30 Jan 2021 21:01:09 -0800 Subject: [PATCH] Fix typo and non-public tests --- README.md | 2 +- .../test/com/sun/jna/platform/win32/IPHlpAPITest.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 685a5389ab..7609ad5161 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/contrib/platform/test/com/sun/jna/platform/win32/IPHlpAPITest.java b/contrib/platform/test/com/sun/jna/platform/win32/IPHlpAPITest.java index 44b7e5b766..555d82848e 100644 --- a/contrib/platform/test/com/sun/jna/platform/win32/IPHlpAPITest.java +++ b/contrib/platform/test/com/sun/jna/platform/win32/IPHlpAPITest.java @@ -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, @@ -230,7 +230,7 @@ void testTCPv4Connections() { } @Test - void testTCPv6Connections() { + public void testTCPv6Connections() { // Get size needed IntByReference sizePtr = new IntByReference(); assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER, @@ -261,7 +261,7 @@ void testTCPv6Connections() { } @Test - void testUDPv4Connections() { + public void testUDPv4Connections() { // Get size needed IntByReference sizePtr = new IntByReference(); assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER, @@ -289,7 +289,7 @@ void testUDPv4Connections() { } @Test - void testUDPv6Connections() { + public void testUDPv6Connections() { // Get size needed IntByReference sizePtr = new IntByReference(); assertEquals(WinError.ERROR_INSUFFICIENT_BUFFER,