From fc521b5f9dbc7a1839b502cd296422abbcc38f52 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Wed, 11 Mar 2015 21:13:17 +0100 Subject: [PATCH] Protocol dep update --- Godeps/Godeps.json | 2 +- .../src/github.com/syncthing/protocol/compression_test.go | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 3a0aeedca..5915c9e58 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -31,7 +31,7 @@ }, { "ImportPath": "github.com/syncthing/protocol", - "Rev": "108b4e2e104610bdf416f2f156f35ee769276caf" + "Rev": "1a4398cc55c8fe82a964097eaf59f2475b020a49" }, { "ImportPath": "github.com/syndtr/goleveldb/leveldb", diff --git a/Godeps/_workspace/src/github.com/syncthing/protocol/compression_test.go b/Godeps/_workspace/src/github.com/syncthing/protocol/compression_test.go index 932297c32..90312344c 100644 --- a/Godeps/_workspace/src/github.com/syncthing/protocol/compression_test.go +++ b/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}, }