From 8dc94f35ca6891268579f22a20dcc62915c4b945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Sat, 30 Mar 2024 23:56:50 +0700 Subject: [PATCH] Fix assertion --- test/livebook/config_test.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/livebook/config_test.exs b/test/livebook/config_test.exs index 4feb4fe18..fea5603ab 100644 --- a/test/livebook/config_test.exs +++ b/test/livebook/config_test.exs @@ -45,8 +45,8 @@ defmodule Livebook.ConfigTest do end) with_env([TEST_IDENTITY_PROVIDER: "cloudflare:123"], fn -> - assert Config.identity_provider!("TEST_IDENTITY_PROVIDER") - {:zta, Livebook.ZTA.Cloudflare, "123"} + assert Config.identity_provider!("TEST_IDENTITY_PROVIDER") == + {:zta, Livebook.ZTA.Cloudflare, "123"} end) end end