Browse Source

Merge pull request #15186 from brahmaroutu/btrfs_test_failure

fix unit test breakage due to lint changes
Tibor Vass 10 years ago
parent
commit
0b089bc7d5
1 changed files with 1 additions and 1 deletions
  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")
 	}
 }