Skip to content

Commit

Permalink
docs: fix displayName typo (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
therealharpaljadeja authored Oct 10, 2022
1 parent ac58cb3 commit f0cc1f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/en/developing/unit-testing-framework.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ describe('handleUpdatedGravatars', () => {
})
test('Upates the displayName', () => {
assert.fieldEquals('Gravatar', '0x0', 'displayNamd', 'First Gravatar')
assert.fieldEquals('Gravatar', '0x0', 'displayName', 'First Gravatar')
// code that should update the displayName to 1st Gravatar
Expand Down Expand Up @@ -425,7 +425,7 @@ describe("handleNewGravatar", () => {
describe("handleUpdatedGravatar", () => {
test("Upates the displayName", () => {
assert.fieldEquals("Gravatar", "0x0", "displayNamd", "First Gravatar")
assert.fieldEquals("Gravatar", "0x0", "displayName", "First Gravatar")
// code that should update the displayName to 1st Gravatar
Expand Down Expand Up @@ -465,7 +465,7 @@ describe("handleUpdatedGravatar", () => {
})
test("Upates the displayName", () => {
assert.fieldEquals("Gravatar", "0x0", "displayNamd", "First Gravatar")
assert.fieldEquals("Gravatar", "0x0", "displayName", "First Gravatar")
// code that should update the displayName to 1st Gravatar
Expand Down

0 comments on commit f0cc1f0

Please sign in to comment.