Skip to content

Commit

Permalink
Updated build version for release #DEPLOY_APP
Browse files Browse the repository at this point in the history
  • Loading branch information
stealthcopter committed Jun 21, 2018
1 parent ad6d793 commit b7a64cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ subprojects {
ext.targetSdkVer = 27
ext.supportLibVer = "27.1.1"

ext.appVersionName = "0.4.0"
ext.appVersionCode = 14
ext.appVersionName = "0.4.1"
ext.appVersionCode = 15
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,9 @@
public class ARPInfoTest {

@Test
public void nullIPsandMacsReturnNull() throws Exception {

public void nullIPsandMacsReturnNull() {
assertNull(ARPInfo.getMACFromIPAddress(null));
assertNull(ARPInfo.getIPAddressFromMAC(null));

// assertEquals(arpInfo.getMACFromIPAddress("192.168.18.11"), "00:04:20:06:55:1a");
// assertEquals(arpInfo.getIPAddressFromMAC("00:22:43:ab:2a:5b"), "192.168.18.36");

}

@Test(expected = IllegalArgumentException.class)
Expand Down

0 comments on commit b7a64cd

Please sign in to comment.