Fixed a small error in the zz_test.go rewrite from a few commits ago.

This commit is contained in:
Pietro Gagliardi 2014-07-29 01:40:17 -04:00
parent a501c5678d
commit ab8acd99b9
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}