summaryrefslogtreecommitdiffstats
path: root/api/file_benchmark_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/file_benchmark_test.go')
-rw-r--r--api/file_benchmark_test.go13
1 files changed, 10 insertions, 3 deletions
diff --git a/api/file_benchmark_test.go b/api/file_benchmark_test.go
index a02bffa0e..d73097072 100644
--- a/api/file_benchmark_test.go
+++ b/api/file_benchmark_test.go
@@ -13,7 +13,9 @@ import (
)
func BenchmarkUploadFile(b *testing.B) {
- _, _, channel := SetupBenchmark()
+ th := Setup().InitBasic()
+ Client := th.BasicClient
+ channel := th.BasicChannel
testPoster := NewAutoPostCreator(Client, channel.Id)
@@ -25,7 +27,10 @@ func BenchmarkUploadFile(b *testing.B) {
}
func BenchmarkGetFile(b *testing.B) {
- team, _, channel := SetupBenchmark()
+ th := Setup().InitBasic()
+ Client := th.BasicClient
+ team := th.BasicTeam
+ channel := th.BasicChannel
testPoster := NewAutoPostCreator(Client, channel.Id)
filenames, err := testPoster.UploadTestFile()
@@ -53,7 +58,9 @@ func BenchmarkGetFile(b *testing.B) {
}
func BenchmarkGetPublicLink(b *testing.B) {
- _, _, channel := SetupBenchmark()
+ th := Setup().InitBasic()
+ Client := th.BasicClient
+ channel := th.BasicChannel
testPoster := NewAutoPostCreator(Client, channel.Id)
filenames, err := testPoster.UploadTestFile()