Protocol dep update

This commit is contained in:
Jakob Borg 2015-03-11 21:13:17 +01:00
parent 5253368acc
commit fc521b5f9d
2 changed files with 2 additions and 4 deletions

2
Godeps/Godeps.json generated
View File

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

View File

@ -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},
}