summaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main_test.go b/main_test.go
index 4960dd3..23a2e16 100644
--- a/main_test.go
+++ b/main_test.go
@@ -13,8 +13,8 @@ func TestMain(t *testing.T) {
b2 := NewButton("Or Me")
s2 := NewStack(Horizontal, b, b2)
c := NewCheckbox("Check Me")
- cb1 := NewCombobox(true, "You can edit me!", "Yes you can!", "Yes you will!")
- cb2 := NewCombobox(false, "You can't edit me!", "No you can't!", "No you won't!")
+ cb1 := NewEditableCombobox("You can edit me!", "Yes you can!", "Yes you will!")
+ cb2 := NewCombobox("You can't edit me!", "No you can't!", "No you won't!")
e := NewLineEdit("Enter text here too")
l := NewLabel("This is a label")
b3 := NewButton("List Info")