From cc078369b7251429f45dfbadf140534e2c3bdf34 Mon Sep 17 00:00:00 2001 From: Corey Date: Wed, 15 Jan 2025 07:20:49 -0800 Subject: [PATCH] test: Correctly name fileprovider test --- spec/APNS.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/APNS.spec.js b/spec/APNS.spec.js index 781f859..ef686af 100644 --- a/spec/APNS.spec.js +++ b/spec/APNS.spec.js @@ -406,7 +406,7 @@ describe('APNS', () => { expect(updatedTopic).toEqual(topic + '.complication'); }); - it('updates topic based on complication pushType', async () => { + it('updates topic based on fileprovider pushType', async () => { const topic = 'bundleId'; const pushType = 'fileprovider'; const updatedTopic = APNS._determineTopic(topic, pushType);