Sfoglia il codice sorgente

Fix version.satisfies so all tests run against 0.9

Evan Huus 10 anni fa
parent
commit
2c40df751c
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  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