Skip to content

Commit f4bd322

Browse files
committed
Fix typo in test name
1 parent 44a5689 commit f4bd322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/production/app-dir/server-action-period-hash/server-action-period-hash-custom-key.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('app-dir - server-action-period-hash-custom-key', () => {
2727
skipStart: true,
2828
})
2929

30-
it('should have different manifest if the encryption key from process env is changed', async () => {
30+
it('should have the same manifest if the encryption key from process env is changed', async () => {
3131
process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY = 'my-secret-key1'
3232
await next.build()
3333
delete process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY
@@ -42,7 +42,7 @@ describe('app-dir - server-action-period-hash-custom-key', () => {
4242
compareServerActionManifestKeys(firstManifest, secondManifest, false)
4343
})
4444

45-
it('should have different manifest if the encryption key from process env is same', async () => {
45+
it('should have a different manifest if the encryption key from process env is same', async () => {
4646
process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY = 'my-secret-key'
4747
await next.build()
4848
const firstManifest = await getServerActionManifest(next)

0 commit comments

Comments
 (0)