From 607cdcc23246aefdaab5bcbf64a1c46347b60100 Mon Sep 17 00:00:00 2001 From: Logan Lang Date: Fri, 14 Jul 2023 18:55:52 -0500 Subject: [PATCH] add missing assert in string test --- reading/exunit.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reading/exunit.livemd b/reading/exunit.livemd index 5f6caf0f7..916bf711c 100644 --- a/reading/exunit.livemd +++ b/reading/exunit.livemd @@ -292,7 +292,7 @@ defmodule StringContainsTest do test "string contains hello" do string = "hello world" - string =~ "hello" + assert string =~ "hello" end end