diff options
author | cyBerta <cyberta@riseup.net> | 2021-01-18 12:41:55 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-01-18 12:41:55 +0100 |
commit | bb6679c4c04e974ddb064b4cb5cee268b67b8ce1 (patch) | |
tree | d4dbe54afeb2ab90f0f6df6ebeaf7d0c58054254 /app/src/test | |
parent | f296fc83eaf2c8f2c07cfc20fe87c8805a324ff2 (diff) |
fix comment
Diffstat (limited to 'app/src/test')
-rw-r--r-- | app/src/test/java/de/blinkt/openvpn/VpnProfileTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/test/java/de/blinkt/openvpn/VpnProfileTest.java b/app/src/test/java/de/blinkt/openvpn/VpnProfileTest.java index e7cb8062..e8a93b75 100644 --- a/app/src/test/java/de/blinkt/openvpn/VpnProfileTest.java +++ b/app/src/test/java/de/blinkt/openvpn/VpnProfileTest.java @@ -37,7 +37,7 @@ public class VpnProfileTest { mockVpnProfile.mLastUsed = 0; String s = mockVpnProfile.toJson(); - //ignore UUID in comparison -> set it to static value + //ignore UUID in comparison -> set it to fixed value JSONObject actual = new JSONObject(s); actual.put("mUuid", "9d295ca2-3789-48dd-996e-f731dbf50fdc"); JSONObject expectation = new JSONObject(OPENVPNCONNECTION_PROFILE); @@ -65,7 +65,7 @@ public class VpnProfileTest { String s = mockVpnProfile.toJson(); System.out.println(s); - //ignore UUID in comparison -> set it to 123 + //ignore UUID in comparison -> set it to fixed value JSONObject actual = new JSONObject(s); actual.put("mUuid", "9d295ca2-3789-48dd-996e-f731dbf50fdc"); JSONObject expectation = new JSONObject(OBFS4CONNECTION_PROFILE); |