From 0d0cc4b6d4fc64599eabe41626b91675ca96db33 Mon Sep 17 00:00:00 2001 From: Anthony Smith <420061+anthonator@users.noreply.github.com> Date: Sat, 24 Aug 2024 09:59:11 -0400 Subject: [PATCH] Fixed `describe` block that should be `test` --- test/nimble_options_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nimble_options_test.exs b/test/nimble_options_test.exs index 3992c75..72c487e 100644 --- a/test/nimble_options_test.exs +++ b/test/nimble_options_test.exs @@ -2250,7 +2250,7 @@ defmodule NimbleOptionsTest do end # No other test is passing in `opts` as a map, so these are just some white box tests for sanity checking - describe "can use a map for validate/2" do + test "can use a map for validate/2" do schema = [] opts = %{} assert NimbleOptions.validate(opts, schema) == {:ok, %{}}