Преглед изворни кода

fix unit test breakage due to lint changes
Addresses #14756

Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>

Srini Brahmaroutu пре 10 година
родитељ
комит
22873eae31
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      daemon/graphdriver/btrfs/version_test.go

+ 1 - 1
daemon/graphdriver/btrfs/version_test.go

@@ -7,7 +7,7 @@ import (
 )
 
 func TestLibVersion(t *testing.T) {
-	if BtrfsLibVersion() <= 0 {
+	if btrfsLibVersion() <= 0 {
 		t.Errorf("expected output from btrfs lib version > 0")
 	}
 }