[YUNIKORN-987] remove references to Cloudera jiras (#347)

diff --git a/test/e2e/predicates/predicates_suite_test.go b/test/e2e/predicates/predicates_suite_test.go
index 18dc120..99ba610 100644
--- a/test/e2e/predicates/predicates_suite_test.go
+++ b/test/e2e/predicates/predicates_suite_test.go
@@ -64,7 +64,6 @@
 	Ω(err3).NotTo(HaveOccurred())
 	Ω(d).NotTo(BeNil())
 	// Updating scheduler pod annotation to trigger force refresh of configmaps
-	// https://jira.cloudera.com/browse/COMPX-4042
 	Ω(k.UpdateYunikornSchedulerPodAnnotation(annotation)).NotTo(HaveOccurred())
 	err = yunikorn.WaitForSchedPolicy("default", 2*time.Minute)
 	Ω(err).NotTo(HaveOccurred())
@@ -81,7 +80,6 @@
 	Ω(err3).NotTo(HaveOccurred())
 	Ω(e).NotTo(BeNil())
 	// Updating scheduler pod annotation to trigger force refresh of configmaps
-	// https://jira.cloudera.com/browse/COMPX-4042
 	Ω(k.RemoveYunikornSchedulerPodAnnotation(annotation)).NotTo(HaveOccurred())
 })
 
@@ -92,7 +90,7 @@
 	ginkgo.RunSpecsWithDefaultAndCustomReporters(t, "TestPredicates", []ginkgo.Reporter{junitReporter})
 }
 
-//type Benchmarker ginkgo.Benchmarker
+// type Benchmarker ginkgo.Benchmarker
 var Fail = ginkgo.Fail
 
 var Describe = ginkgo.Describe
diff --git a/test/e2e/state_aware_app_scheduling/drip_feed_schedule_test.go b/test/e2e/state_aware_app_scheduling/drip_feed_schedule_test.go
index 84f7a02..3560100 100644
--- a/test/e2e/state_aware_app_scheduling/drip_feed_schedule_test.go
+++ b/test/e2e/state_aware_app_scheduling/drip_feed_schedule_test.go
@@ -53,9 +53,6 @@
 		Ω(ns1.Status.Phase).To(Equal(v1.NamespaceActive))
 	})
 
-	// Disabling/Skipping the tests as per the comment in
-	// https://jira.cloudera.com/browse/COMPX-4041
-	// Product fix is implemented as part of YUNIKORN-317
 	PIt("Test_State_Aware_App_Sorting", func() {
 		By("Submit 3 apps(app01, app02, app03) with one pod each")
 		for _, appID := range []string{app1, app2, app3} {
@@ -67,7 +64,7 @@
 
 		By(fmt.Sprintf("Get apps from specific queue: %s", ns))
 		var appsFromQueue []map[string]interface{}
-		//Poll for apps to appear in the queue
+		// Poll for apps to appear in the queue
 		err = wait.PollImmediate(time.Second, time.Duration(60)*time.Second, func() (done bool, err error) {
 			appsFromQueue, err = restClient.GetAppsFromSpecificQueue("root." + ns)
 			if len(appsFromQueue) == 3 {