From ab8acd99b98c972dfd1e6ba05b00952d05721e04 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 29 Jul 2014 01:40:17 -0400 Subject: [PATCH] Fixed a small error in the zz_test.go rewrite from a few commits ago. --- redo/zz_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/zz_test.go b/redo/zz_test.go index b70d66a..f6791a0 100644 --- a/redo/zz_test.go +++ b/redo/zz_test.go @@ -75,7 +75,7 @@ func (tw *testwin) make(done chan struct{}) { tw.e = NewTextField() tw.t.Append("Text Field", tw.e) tw.e2 = NewPasswordField() - tw.t.Append("Password Field", tw.e) + tw.t.Append("Password Field", tw.e2) tw.w.Show() }