summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-29 01:40:17 -0400
committerPietro Gagliardi <[email protected]>2014-07-29 01:40:17 -0400
commitab8acd99b98c972dfd1e6ba05b00952d05721e04 (patch)
tree094dc5c2e7a01cfcb7b3ff5e09581bd050b567a6
parenta501c5678d4a226d436f030226c76532f2a6f36b (diff)
Fixed a small error in the zz_test.go rewrite from a few commits ago.
-rw-r--r--redo/zz_test.go2
1 files changed, 1 insertions, 1 deletions
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()
}