Explorar el Código

Fix version.satisfies so all tests run against 0.9

Evan Huus hace 10 años
padre
commit
2c40df751c
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      functional_test.go

+ 2 - 0
functional_test.go

@@ -129,6 +129,8 @@ func (kv kafkaVersion) satisfies(other kafkaVersion) bool {
 
 		if v < ov {
 			return false
+		} else if v > ov {
+			return true
 		}
 	}
 	return true