Browse code

fix unit test breakage due to lint changes Addresses #14756

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

Srini Brahmaroutu authored on 2015/07/31 09:16:53
Showing 1 changed files
... ...
@@ -7,7 +7,7 @@ import (
7 7
 )
8 8
 
9 9
 func TestLibVersion(t *testing.T) {
10
-	if BtrfsLibVersion() <= 0 {
10
+	if btrfsLibVersion() <= 0 {
11 11
 		t.Errorf("expected output from btrfs lib version > 0")
12 12
 	}
13 13
 }