Skip to content

Commit

Permalink
Fix typo in test name
Browse files Browse the repository at this point in the history
I made it worse

f
  • Loading branch information
mischnic committed Mar 7, 2025
1 parent 44a5689 commit 4d51eee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('app-dir - server-action-period-hash-custom-key', () => {
skipStart: true,
})

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

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

0 comments on commit 4d51eee

Please sign in to comment.