Browse Source

mvcc: make test struct fields unexported

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 8 years ago
parent
commit
82a164e3b9
1 changed files with 9 additions and 9 deletions
  1. 9 9
      mvcc/watcher_test.go

+ 9 - 9
mvcc/watcher_test.go

@@ -92,9 +92,9 @@ func TestWatcherRequestsCustomID(t *testing.T) {
 	// - Make sure the auto-assignment skips over things we manually assigned
 
 	tt := []struct {
-		GivenID     WatchID
-		ExpectedID  WatchID
-		ExpectedErr error
+		givenID     WatchID
+		expectedID  WatchID
+		expectedErr error
 	}{
 		{1, 1, nil},
 		{1, 0, ErrWatcherDuplicateID},
@@ -103,13 +103,13 @@ func TestWatcherRequestsCustomID(t *testing.T) {
 	}
 
 	for i, tcase := range tt {
-		id, err := w.Watch(tcase.GivenID, []byte("foo"), nil, 0)
-		if tcase.ExpectedErr != nil || err != nil {
-			if err != tcase.ExpectedErr {
-				t.Errorf("expected get error %q in test case %q, got %q", tcase.ExpectedErr, i, err)
+		id, err := w.Watch(tcase.givenID, []byte("foo"), nil, 0)
+		if tcase.expectedErr != nil || err != nil {
+			if err != tcase.expectedErr {
+				t.Errorf("expected get error %q in test case %q, got %q", tcase.expectedErr, i, err)
 			}
-		} else if tcase.ExpectedID != id {
-			t.Errorf("expected to create ID %d, got %d in test case %d", tcase.ExpectedID, id, i)
+		} else if tcase.expectedID != id {
+			t.Errorf("expected to create ID %d, got %d in test case %d", tcase.expectedID, id, i)
 		}
 	}
 }