diff options
| author | Sean Liao <sean@liao.dev> | 2025-10-26 13:45:57 +0000 |
|---|---|---|
| committer | Sean Liao <sean@liao.dev> | 2025-10-28 06:00:51 -0700 |
| commit | c0531f9c34514ad5c5551e2d6ce569ca673a8afd (patch) | |
| tree | 3dccdddd4a4127d6a60affca291947b623de484b | |
| parent | 0997000b45e3a40598272081bcad03ffd21b8adb (diff) | |
| download | go-x-crypto-c0531f9c34514ad5c5551e2d6ce569ca673a8afd.tar.xz | |
all: eliminate vet diagnostics
For golang/go#74011
Change-Id: I189c5aba554a578bee1fd351edc30cd5cf4d0ed6
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/714960
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: David Chase <drchase@google.com>
| -rw-r--r-- | otr/otr_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/otr/otr_test.go b/otr/otr_test.go index cfcd062..3b7aa19 100644 --- a/otr/otr_test.go +++ b/otr/otr_test.go @@ -75,8 +75,8 @@ const libOTRPrivateKey = `(privkeys (account (name "foo@example.com") (protocol prpl-jabber) -(private-key - (dsa +(private-key + (dsa (p #00FC07ABCF0DC916AFF6E9AE47BEF60C7AB9B4D6B2469E436630E36F8A489BE812486A09F30B71224508654940A835301ACC525A4FF133FC152CC53DCC59D65C30A54F1993FE13FE63E5823D4C746DB21B90F9B9C00B49EC7404AB1D929BA7FBA12F2E45C6E0A651689750E8528AB8C031D3561FECEE72EBB4A090D450A9B7A857#) (q #00997BD266EF7B1F60A5C23F3A741F2AEFD07A2081#) (g #535E360E8A95EBA46A4F7DE50AD6E9B2A6DB785A66B64EB9F20338D2A3E8FB0E94725848F1AA6CC567CB83A1CC517EC806F2E92EAE71457E80B2210A189B91250779434B41FC8A8873F6DB94BEA7D177F5D59E7E114EE10A49CFD9CEF88AE43387023B672927BA74B04EB6BBB5E57597766A2F9CE3857D7ACE3E1E3BC1FC6F26#) @@ -402,7 +402,7 @@ func TestAgainstLibOTR(t *testing.T) { // This test requires otr.c.test to be built as /tmp/a.out. // If enabled, this tests runs forever performing OTR handshakes in a // loop. - return + t.Skip("This test requires otr.c.test to be built as /tmp/a.out") alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex) var alice Conversation |
