Correct tests

This commit is contained in:
Blade Barringer
2015-10-01 21:56:14 -05:00
parent be3decf859
commit b4ce683190
2 changed files with 3 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
import hatchingPotions from '../../common/script/src/content/hatching-potions';
import { all as potions } from '../../common/script/src/content/hatching-potions';
import {each} from 'lodash';
describe('Hatching Potion Locales', () => {
each(hatchingPotions, (potion, key) => {
each(potions, (potion, key) => {
describe(`${key} Potion`, () => {
it('has a valid text attribute', () => {
expectValidTranslationString(potion.text);