Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nithriel committed Nov 29, 2024
1 parent 23615bc commit a21ec49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion migrations/20241129212739-DEVSU-2513-rename-tbm-score.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
up: (queryInterface) => {
return queryInterface.sequelize.transaction(async (transaction) => {
return Promise.all([
queryInterface.renameColumn(TABLE, 'intersect_tmb_score', 'genome_tmb', {transaction})
queryInterface.renameColumn(TABLE, 'intersect_tmb_score', 'genome_tmb', {transaction}),
]);
});
},
Expand Down
2 changes: 1 addition & 1 deletion test/testData/mockReportData.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"template": "genomic",
"captiv8Score": 20,
"hrdetectScore": 10.5,
"intersectTmbScore": 9.75,
"genomeTmb": 9.75,
"appendix": "this is an example of an appendix",
"sampleInfo": [
{
Expand Down

0 comments on commit a21ec49

Please sign in to comment.