operator-framework / combo

Apache License 2.0
8 stars 15 forks source link

fix nextIterativeCombination method to correctly output combinations given a singular input #80

Closed jbuchananr closed 2 years ago

jbuchananr commented 2 years ago

Story

As a user of Combo I need correct output of combinations given a singular combination input e.g TEST1: "foo", "bar"

Summary

We need to fix the bug in nextIterativeCombination() that is causing the output of the previous example to be TEST1: "foo" instead of the correct output TEST1: "foo", TEST1: "bar" This will ensure that nextIterative provides correct combinations.

Acceptance Criteria

Note: This bug is only an issue in nextIterativeCombination and not nextPreSolvedCombination