Bug 1517525 - Spelling issue for Reducers.test.js initial state (#4647)

This commit is contained in:
Andrei Oprea 2019-01-09 18:03:40 +00:00 коммит произвёл GitHub
Родитель 0c46c2809e
Коммит cb74c57544
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -606,7 +606,7 @@ describe("Reducers", () => {
assert.propertyVal(state, "version", data.version);
});
it("should reset to the initial state on a SNIPPETS_RESET action", () => {
const state = Snippets({initalized: true, foo: "bar"}, {type: at.SNIPPETS_RESET});
const state = Snippets({initialized: true, foo: "bar"}, {type: at.SNIPPETS_RESET});
assert.equal(state, INITIAL_STATE.Snippets);
});
it("should set the new blocklist on SNIPPET_BLOCKED", () => {