summaryrefslogtreecommitdiff
path: root/app/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/test.go')
-rw-r--r--app/test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/test.go b/app/test.go
index 331dad5..419cd7f 100644
--- a/app/test.go
+++ b/app/test.go
@@ -6,9 +6,9 @@ import (
)
func insertHost() {
- h := Host{Url: "http://www.iamfabulous.de/", Monitored: true, Private: false}
+ h := Host{Host: "www.iamfabulous.de", Url: "http://www.iamfabulous.de/", Monitored: true, Private: false, Class: "info"}
Db.Create(&h)
- h = Host{Url: "https://iamfabulousadsfadfdsf.de/", Monitored: true, Private: false}
+ h = Host{Host: "iamfabulousadsfadfdsf.de", Url: "https://iamfabulousadsfadfdsf.de/", Monitored: true, Private: false, Class: "info"}
Db.Create(&h)
// c := pool.Get()