Skip to content

Commit b7a64cd

Browse files
committed
Updated build version for release #DEPLOY_APP
1 parent ad6d793 commit b7a64cd

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ subprojects {
3030
ext.targetSdkVer = 27
3131
ext.supportLibVer = "27.1.1"
3232

33-
ext.appVersionName = "0.4.0"
34-
ext.appVersionCode = 14
33+
ext.appVersionName = "0.4.1"
34+
ext.appVersionCode = 15
3535
}

library/src/test/java/com/stealthcopter/networktools/ARPInfoTest.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,9 @@
1010
public class ARPInfoTest {
1111

1212
@Test
13-
public void nullIPsandMacsReturnNull() throws Exception {
14-
13+
public void nullIPsandMacsReturnNull() {
1514
assertNull(ARPInfo.getMACFromIPAddress(null));
1615
assertNull(ARPInfo.getIPAddressFromMAC(null));
17-
18-
// assertEquals(arpInfo.getMACFromIPAddress("192.168.18.11"), "00:04:20:06:55:1a");
19-
// assertEquals(arpInfo.getIPAddressFromMAC("00:22:43:ab:2a:5b"), "192.168.18.36");
20-
2116
}
2217

2318
@Test(expected = IllegalArgumentException.class)

0 commit comments

Comments
 (0)