Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
samstarling committed Feb 6, 2025
1 parent 7d458ac commit 3d65d90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions block_rich_text_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ func TestNewRichTextBlock(t *testing.T) {

assert.Equal(t, richTextBlock.BlockType(), MBTRichText)
assert.Equal(t, string(richTextBlock.Type), "rich_text")
assert.Equal(t, string(richTextBlock.BlockID), "test_block")
assert.Equal(t, string(richTextBlock.ID()), "test_block")
assert.Equal(t, richTextBlock.BlockID, "test_block")
assert.Equal(t, richTextBlock.ID(), "test_block")
}

func TestRichTextBlock_UnmarshalJSON(t *testing.T) {
Expand Down

0 comments on commit 3d65d90

Please sign in to comment.