@@ -21,7 +21,7 @@ func TestGuides(t *testing.T) {
2121 ctx , client , stop := setup ()
2222 defer stop ()
2323
24- token , userId , err := makeUser (ctx )
24+ token , userID , err := makeUser (ctx )
2525 testza .AssertNoError (t , err )
2626
2727 // Run Twice to detect any cache issues
@@ -65,7 +65,7 @@ func TestGuides(t *testing.T) {
6565 testza .AssertEqual (t , "Hello World" , queryGuideResponse .GetGuide .Name )
6666 testza .AssertEqual (t , "Short description about the guide" , queryGuideResponse .GetGuide .ShortDescription )
6767 testza .AssertEqual (t , "The full guide text goes here." , queryGuideResponse .GetGuide .Guide )
68- testza .AssertEqual (t , userId , queryGuideResponse .GetGuide .User .ID )
68+ testza .AssertEqual (t , userID , queryGuideResponse .GetGuide .User .ID )
6969
7070 // Update
7171 updateGuide := authRequest (`mutation ($id: GuideID!) {
@@ -111,7 +111,7 @@ func TestGuides(t *testing.T) {
111111 testza .AssertEqual (t , "Foo Bar" , queryGuidesResponse .GetGuides .Guides [0 ].Name )
112112 testza .AssertEqual (t , "Short description about the guide" , queryGuidesResponse .GetGuides .Guides [0 ].ShortDescription )
113113 testza .AssertEqual (t , "The full guide text goes here." , queryGuidesResponse .GetGuides .Guides [0 ].Guide )
114- testza .AssertEqual (t , userId , queryGuidesResponse .GetGuides .Guides [0 ].User .ID )
114+ testza .AssertEqual (t , userID , queryGuidesResponse .GetGuides .Guides [0 ].User .ID )
115115
116116 // Delete
117117 deleteGuide := authRequest (`mutation ($id: GuideID!) {
0 commit comments