Returning test functions to public

Signed-off-by: Tom Powell <t.powell@mwam.com>
This commit is contained in:
Tom Powell 2023-02-08 10:12:15 +00:00
parent ba3cffdc79
commit 846263afee
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,6 @@ import (
"testing"
)
func benchmarkTeradiciPcoipCollector(b *testing.B) {
func BenchmarkTeradiciPcoipCollector(b *testing.B) {
benchmarkCollector(b, "teradici_pcoip", newTeradiciPcoipCollector)
}

View File

@ -4,6 +4,6 @@ import (
"testing"
)
func benchmarkVmwareBlastCollector(b *testing.B) {
func BenchmarkVmwareBlastCollector(b *testing.B) {
benchmarkCollector(b, "vmware_blast", newVmwareBlastCollector)
}