Jakob Borg 10 лет назад
Родитель
Сommit
fc521b5f9d

+ 1 - 1
Godeps/Godeps.json

@@ -31,7 +31,7 @@
 		},
 		{
 			"ImportPath": "github.com/syncthing/protocol",
-			"Rev": "108b4e2e104610bdf416f2f156f35ee769276caf"
+			"Rev": "1a4398cc55c8fe82a964097eaf59f2475b020a49"
 		},
 		{
 			"ImportPath": "github.com/syndtr/goleveldb/leveldb",

+ 1 - 3
Godeps/_workspace/src/github.com/syncthing/protocol/compression_test.go

@@ -13,9 +13,8 @@ func TestCompressionMarshal(t *testing.T) {
 		{"false", CompressNever},
 		{"never", CompressNever},
 		{"metadata", CompressMetadata},
-		{"filedata", CompressFiledata},
 		{"always", CompressAlways},
-		{"whatever", CompressNever},
+		{"whatever", CompressMetadata},
 	}
 
 	mTestcases := []struct {
@@ -24,7 +23,6 @@ func TestCompressionMarshal(t *testing.T) {
 	}{
 		{"never", CompressNever},
 		{"metadata", CompressMetadata},
-		{"filedata", CompressFiledata},
 		{"always", CompressAlways},
 	}