From bd70b68ffc6d522d98757db03a5ea6ee83a597f8 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Thu, 22 Sep 2022 18:21:03 -0700 Subject: [PATCH] Remove test that no longer applies --- client/lib/lib_test.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/client/lib/lib_test.go b/client/lib/lib_test.go index 9556580..45c4eb9 100644 --- a/client/lib/lib_test.go +++ b/client/lib/lib_test.go @@ -91,13 +91,6 @@ func TestBuildHistoryEntry(t *testing.T) { if entry.StartTime.Unix() != 1641774958 { t.Fatalf("history entry has incorrect Unix time in the start time: %v", entry.StartTime.Unix()) } - - // Test the weird zsh bug - entry, err = BuildHistoryEntry(hctx.MakeContext(), []string{"unused", "saveHistoryEntry", "zsh", "120", ": 1663823053:0;echo foo\n", "1641774958"}) - shared.Check(t, err) - if entry.Command != "echo foo" { - t.Fatalf("expected the zsh command to be worked around, actual=%s", entry.Command) - } } func TestPersist(t *testing.T) {