summary refs log tree commit diff stats
path: root/svc/db_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'svc/db_test.go')
-rw-r--r--svc/db_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/svc/db_test.go b/svc/db_test.go
index 071936e..f3252c6 100644
--- a/svc/db_test.go
+++ b/svc/db_test.go
@@ -73,7 +73,7 @@ func Benchmark_pushDatabase(b *testing.B) {
 	b.ResetTimer()
 
 	for i := 0; i < b.N; i++ {
-		err := pushDatabase()
+		err := pushDB()
 		if err != nil {
 			b.Errorf("%v\n", err)
 		}
@@ -87,6 +87,6 @@ func Benchmark_pullDatabase(b *testing.B) {
 	}
 
 	for i := 0; i < b.N; i++ {
-		pullDatabase()
+		pullDB()
 	}
 }