Fix TC.
diff --git a/apigee_sync_test.go b/apigee_sync_test.go
index bbc6302..bd85b97 100644
--- a/apigee_sync_test.go
+++ b/apigee_sync_test.go
@@ -189,7 +189,8 @@
 					numApidClusters.Scan(&rowCount)
 					Expect(1).To(Equal(rowCount))
 					numApidClusters.Close()
-					apidClusters, _ := db.Query("select id from edgex_apid_cluster;")
+					apidClusters, err := db.Query("select id from edgex_apid_cluster;")
+					Expect(err).NotTo(HaveOccurred())
 					apidClusters.Next()
 					apidClusters.Scan(&id)
 					Expect(id).To(Equal(expectedClusterId))