fix(v2): Drop prevValue from exported fields

This commit is contained in:
Brian Waldon
2013-12-06 11:46:23 -08:00
parent 5edaee79e6
commit 0fb8fc0b8d
5 changed files with 5 additions and 10 deletions

View File

@ -54,7 +54,7 @@ func templateTestSimpleMultiNode(t *testing.T, tls bool) {
result, err = c.Set("foo", "bar", 100)
node = result.Node
if err != nil || node.Key != "/foo" || node.Value != "bar" || node.PrevValue != "bar" || node.TTL < 95 {
if err != nil || node.Key != "/foo" || node.Value != "bar" || node.TTL < 95 {
if err != nil {
t.Fatal(err)
}