about summary refs log tree commit diff stats
path: root/svc
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-09 02:22:00 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-09 02:22:00 -0400
commite280417e804cb0f3723639b14a7af12e6bdebd09 (patch)
tree49bc8f78897181fac52b7469eed45d43904aedd4 /svc
parent5e92b610a5f8832e6a389b1acb01fd0cc866780e (diff)
downloadgetwtxt-e280417e804cb0f3723639b14a7af12e6bdebd09.tar.gz
re-enabled pushDB/pullDB test
Diffstat (limited to 'svc')
-rw-r--r--svc/db_test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/svc/db_test.go b/svc/db_test.go
index f3252c6..8cd0b61 100644
--- a/svc/db_test.go
+++ b/svc/db_test.go
@@ -7,7 +7,6 @@ import (
 	"github.com/getwtxt/registry"
 )
 
-/*
 func Test_pushpullDatabase(t *testing.T) {
 	initTestConf()
 	initDatabase()
@@ -25,7 +24,7 @@ func Test_pushpullDatabase(t *testing.T) {
 	remoteRegistries.Mu.Unlock()
 
 	t.Run("Push to Database", func(t *testing.T) {
-		err := pushDatabase()
+		err := pushDB()
 		if err != nil {
 			t.Errorf("%v\n", err)
 		}
@@ -39,7 +38,7 @@ func Test_pushpullDatabase(t *testing.T) {
 	})
 
 	t.Run("Pulling from Database", func(t *testing.T) {
-		pullDatabase()
+		pullDB()
 		twtxtCache.Mu.RLock()
 		if _, ok := twtxtCache.Users["https://gbmor.dev/twtxt.txt"]; !ok {
 			t.Errorf("Missing user previously pushed to database\n")
@@ -48,7 +47,6 @@ func Test_pushpullDatabase(t *testing.T) {
 
 	})
 }
-*/
 func Benchmark_pushDatabase(b *testing.B) {
 	initTestConf()