From 92ee69734727c6dd907b29d49f8d9b41af0d8cc6 Mon Sep 17 00:00:00 2001 From: Michael Ritter Date: Wed, 20 Nov 2024 12:04:38 -0700 Subject: [PATCH] Change test name to trigger github actions --- test/specs/reducers/tags.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/specs/reducers/tags.spec.js b/test/specs/reducers/tags.spec.js index 99c390b8..2feee4cd 100644 --- a/test/specs/reducers/tags.spec.js +++ b/test/specs/reducers/tags.spec.js @@ -14,7 +14,7 @@ const { expect } = chai; chai.use(chaiImmutable); chai.should(); -describe('service tags reducer', () => { +describe('tags reducer', () => { it('should have an empty immutable initial state', () => { reducer(undefined, {}).should.deep.equal(Immutable.Map({})); });