Skip to content

Commit 5924c97

Browse files
authored
fix: Change export lines to use typeName for mutants
1 parent 17721f1 commit 5924c97

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

service/port/muta.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
def renderMutant(mutant, firstPrefix='', prefix=''):
3030
exportLines = []
31-
exportLines.append('{}{}'.format(firstPrefix, mutant.baseItem.name))
32-
exportLines.append('{}{}'.format(prefix, mutant.mutaplasmid.item.name))
31+
exportLines.append('{}{}'.format(firstPrefix, mutant.baseItem.typeName))
32+
exportLines.append('{}{}'.format(prefix, mutant.mutaplasmid.item.typeName))
3333
exportLines.append('{}{}'.format(prefix, renderMutantAttrs(mutant)))
3434
return '\n'.join(exportLines)
3535

0 commit comments

Comments
 (0)