From 10b697892a4f5c80367191cdfc02dc9f25e65120 Mon Sep 17 00:00:00 2001 From: Jessica Phoenix Canady Date: Thu, 23 May 2024 15:26:58 -0400 Subject: [PATCH] Fix test docstring. --- test/lib/blog/parser_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/blog/parser_test.exs b/test/lib/blog/parser_test.exs index d0deda3..59d5b94 100644 --- a/test/lib/blog/parser_test.exs +++ b/test/lib/blog/parser_test.exs @@ -19,7 +19,7 @@ defmodule JOL.Blog.ParserTest do {:ok, content: content} end - test "parses attrs from zola-style posts", post do + test "parses the body from zola-style posts", post do {_attrs, body} = Parser.parse("/fake/filename", post.content) assert body == "Body!" end