Browse Source

Merge pull request #15186 from brahmaroutu/btrfs_test_failure

fix unit test breakage due to lint changes
Tibor Vass 10 năm trước cách đây
mục cha
commit
0b089bc7d5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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")
 	}
 }