Skip to content

Commit

Permalink
Reduce to smallest width w/o overflow, fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronDavidNewman committed May 11, 2021
1 parent 65da4f5 commit 08ce4a7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/formatter_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -632,27 +632,27 @@ const FormatterTests = (function () {
var smar = [
{
sm: 5,
width: 880,
width: 550,
lyrics: lyrics1,
title: '450px,softMax:5',
title: '550px,softMax:5',
},
{
sm: 10,
width: 880,
width: 550,
lyrics: lyrics2,
title: '450px,softmax:10,different word order',
title: '550px,softmax:10,different word order',
},
{
sm: 5,
width: 880,
width: 550,
lyrics: lyrics2,
title: '460px,softmax:5',
title: '550px,softmax:5',
},
{
sm: 100,
width: 880,
width: 550,
lyrics: lyrics2,
title: '460px,softmax:100',
title: '550px,softmax:100',
},
];

Expand Down

0 comments on commit 08ce4a7

Please sign in to comment.