Skip to content

Commit

Permalink
Updated minor version to reflect last comment; fixed spacing issues t…
Browse files Browse the repository at this point in the history
…riggering failed checks
  • Loading branch information
btski committed Nov 3, 2023
1 parent 525e394 commit 51cbf39
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.0.2 [2023-11-03]
===================

* Made constellation determination more robust with partial, case-insensitive matching

v1.0.1 [2022-02-16]
===================

Expand Down
2 changes: 1 addition & 1 deletion octofludb/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.1"
__version__ = "1.0.2"
8 changes: 4 additions & 4 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,12 +957,12 @@ def test_constellations_mixed(self):
def test_constellations_well_mixed(self):
data = [
# A VPPVPT
("A", "PB2", "LAIV"),
("A", "PB2", "TX98"), # both V
("A", "PB2", "LAIV"),
("A", "PB2", "TX98"), # both V
("A", "PB1", "pdm"),
("A", "PA", "pdm"),
("A", "NP", "LAIV"),
("A", "NP", "TX98"), # both V
("A", "NP", "TX98"), # both V
("A", "M", "pdm"),
("A", "NS", "TRIG"),
("A", "NS", "TRIG"), # duplicates are fine
Expand All @@ -984,7 +984,7 @@ def test_constellations_irregular(self):
]
out = [("A", "PX-P-T")]
self.assertEqual(formatter._make_constellations(data), out)

def test_constellations_flexible(self):
data = [
# A AAAAPX
Expand Down

0 comments on commit 51cbf39

Please sign in to comment.