add more test, remove FIT (force execute of single tests).
diff --git a/quotaBucket/quotaDescriptorType_test.go b/quotaBucket/quotaDescriptorType_test.go
index 0bd44cf..5c83148 100644
--- a/quotaBucket/quotaDescriptorType_test.go
+++ b/quotaBucket/quotaDescriptorType_test.go
@@ -19,7 +19,7 @@
}
})
- FIt("test RollingWindow Type descriptor", func() {
+ It("test RollingWindow Type descriptor", func() {
descriptorType, err := GetQuotaDescriptorTypeHandler("rollingwindow")
Expect(err).NotTo(HaveOccurred())
if reflect.TypeOf(descriptorType)!= reflect.TypeOf(&RollingWindowQuotaDescriptorType{}){
@@ -27,7 +27,7 @@
}
})
- FIt("test invalid Type descriptor", func() {
+ It("test invalid Type descriptor", func() {
_, err := GetQuotaDescriptorTypeHandler("invalidDescriptorType")
Expect(err).To(HaveOccurred())
if !strings.Contains(err.Error(), InvalidQuotaDescriptorType) {