Skip to content

Commit a67cb5d

Browse files
rgonzalezfluendomdimopoulos
authored andcommitted
fix: Avoid BC break from prev commit
1 parent f9ec74a commit a67cb5d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

fluster/fluster.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,8 @@ def _normalize_context(self, ctx: Context) -> None:
252252
ctx.test_suites_names = [x.lower() for x in ctx.test_suites_names]
253253
if ctx.decoders_names:
254254
ctx.decoders_names = [x.lower() for x in ctx.decoders_names]
255+
# Workaround to avoid BC break for prev commit. Delete when next MAYOR version
256+
ctx.decoders_names = [x[0:-7] if "-gst1.0" in x else x for x in ctx.decoders_names]
255257
if ctx.test_vectors_names:
256258
ctx.test_vectors_names = [x.lower() for x in ctx.test_vectors_names]
257259
if ctx.skip_vectors_names:

0 commit comments

Comments
 (0)