File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 22
33RELEASE_VERSION=" $1 "
44
5- # Delete until the first line containing "-- "
6- sed -i ' 1,/-- /d' temp_change.md
5+ # Delete until and including the first line containing "<!-- Release notes generated "
6+ sed -i ' 1,/^<!-- Release notes generated /d' temp_change.md
77# Reverse the order of lines in the file (last line becomes first, etc.)
88sed -i ' 1h;1d;$!H;$!d;G' temp_change.md
99# Convert "**Full Changelog**: URL" format to markdown link format "[Full Changelog](URL)"
Original file line number Diff line number Diff line change @@ -83,19 +83,19 @@ describe("TestAttacks", function()
8383 runCallback (" OnFrame" )
8484 end
8585 it (" correctly calculates increased damage with gemling integrated efficiency" , function ()
86- integratedEfficiencyLoadout (" skills gain 99% increased damage per socketed red support gem" )
86+ integratedEfficiencyLoadout (" skills deal 99% increased damage per connected red support gem" )
8787 local incDmg = build .calcsTab .mainEnv .player .activeSkillList [1 ].skillModList :Sum (" INC" , nil , " Damage" )
8888 assert .are .equals (incDmg , 99 )
8989 end )
9090
9191 it (" correctly calculates crit chance with gemling integrated efficiency" , function ()
92- integratedEfficiencyLoadout (" skills gain 99% increased critical hit chance per socketed blue support gem" )
92+ integratedEfficiencyLoadout (" skills have 99% increased critical hit chance per connected blue support gem" )
9393 local incCritChance = build .calcsTab .mainEnv .player .activeSkillList [1 ].skillModList :Sum (" INC" , nil , " CritChance" )
9494 assert .are .equals (incCritChance , 99 )
9595 end )
9696
9797 it (" correctly calculates increased skill speed with gemling integrated efficiency" , function ()
98- integratedEfficiencyLoadout (" skills gain 99% increased skill speed per socketed green support gem" )
98+ integratedEfficiencyLoadout (" skills have 99% increased skill speed per connected green support gem" )
9999 local incSpeed = build .calcsTab .mainEnv .player .activeSkillList [1 ].skillModList :Sum (" INC" , nil , " Speed" )
100100 assert .are .equals (incSpeed , 99 )
101101 end )
You can’t perform that action at this time.
0 commit comments