From 64da59ef46c7b95989b5c2be17db138d21aa59c0 Mon Sep 17 00:00:00 2001 From: Stefano Date: Sun, 13 Mar 2022 13:30:59 +0100 Subject: [PATCH] Sort capabilities to make CAP command output predictable --- client/commands.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/commands.go b/client/commands.go index a8326fe..e33ee42 100644 --- a/client/commands.go +++ b/client/commands.go @@ -2,6 +2,7 @@ package client import ( "fmt" + "sort" "strings" ) @@ -320,6 +321,9 @@ func (conn *Conn) Cap(subcommmand string, capabilities ...string) { if len(capabilities) == 0 { conn.Raw(CAP + " " + subcommmand) } else { + // make output predictable for testing + sort.Strings(capabilities) + for _, cmd := range splitCommand(CAP+" "+subcommmand+" :", capabilities, defaultSplit) { conn.Raw(cmd) }