Skip to content

Commit

Permalink
Fix test naming
Browse files Browse the repository at this point in the history
  • Loading branch information
RagedUnicorn committed Sep 24, 2024
1 parent 4c4fd4e commit f38f280
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions test/shaman/PVPW_TestCombatEventsShamanEn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ function me.CollectTestCases()
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventWaterShieldRemoved)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventDecoyTotemSuccess)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventTotemicProjectionSuccess)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventMaelStromWeaponApplied)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventMaelStromWeaponRemoved)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventMaelstromWeaponApplied)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventMaelstromWeaponRemoved)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventTidalWavesApplied)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventTidalWavesRemoved)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventRiptideSuccess)
Expand Down Expand Up @@ -370,17 +370,17 @@ function me.TestCombatEventTotemicProjectionSuccess()
)
end

function me.TestCombatEventMaelStromWeaponApplied()
function me.TestCombatEventMaelstromWeaponApplied()
mod.testHelper.TestCombatEventApplied(
"TestCombatEventMaelStromWeaponApplied",
"TestCombatEventMaelstromWeaponApplied",
testCategory,
"Maelstrom Weapon"
)
end

function me.TestCombatEventMaelStromWeaponRemoved()
function me.TestCombatEventMaelstromWeaponRemoved()
mod.testHelper.TestCombatEventRemoved(
"TestCombatEventMaelStromWeaponRemoved",
"TestCombatEventMaelstromWeaponRemoved",
testCategory,
"Maelstrom Weapon"
)
Expand Down
12 changes: 6 additions & 6 deletions test/shaman/PVPW_TestSoundShamanEn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ function me.CollectTestCases()
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundDownWaterShield)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundDecoyTotem)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundTotemicProjection)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundMaelStromWeapon)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundDownMaelStromWeapon)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundMaelstromWeapon)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundDownMaelstromWeapon)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundTidalWaves)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundDownTidalWaves)
mod.testReporter.AddToTestQueueWithDelay(me.TestSoundRiptide)
Expand Down Expand Up @@ -368,17 +368,17 @@ function me.TestSoundTotemicProjection()
)
end

function me.TestSoundMaelStromWeapon()
function me.TestSoundMaelstromWeapon()
mod.testHelper.TestSoundApplied(
"TestSoundMaelStromWeapon",
"TestSoundMaelstromWeapon",
testCategory,
"Maelstrom Weapon"
)
end

function me.TestSoundDownMaelStromWeapon()
function me.TestSoundDownMaelstromWeapon()
mod.testHelper.TestSoundRemoved(
"TestSoundDownMaelStromWeapon",
"TestSoundDownMaelstromWeapon",
testCategory,
"Maelstrom Weapon"
)
Expand Down
6 changes: 3 additions & 3 deletions test/warrior/PVPW_TestCombatEventsWarriorEn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function me.CollectTestCases()
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventValorOfAzerothApplied)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventValorOfAzerothRemoved)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventVictoryRushSuccess)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventAppliedGladiatorStanceApplied)
mod.testReporter.AddToTestQueueWithDelay(me.TestCombatEventGladiatorStanceApplied)
end

function me.TestCombatEventBerserkerRageApplied()
Expand Down Expand Up @@ -480,9 +480,9 @@ function me.TestCombatEventVictoryRushSuccess()
)
end

function me.TestCombatEventAppliedGladiatorStanceApplied()
function me.TestCombatEventGladiatorStanceApplied()
mod.testHelper.TestCombatEventApplied(
"TestCombatEventAppliedGladiatorStanceApplied",
"TestCombatEventGladiatorStanceApplied",
testCategory,
"Gladiator Stance"
)
Expand Down

0 comments on commit f38f280

Please sign in to comment.