From 4c9d73d5207e6888bebcaf4a0badcf35b965daf3 Mon Sep 17 00:00:00 2001 From: MICHAELMUNAVU83 Date: Thu, 16 Nov 2023 07:55:43 +0300 Subject: [PATCH] Fixed Linter errors --- test/elixir_conf_africa/cart_test.exs | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/elixir_conf_africa/cart_test.exs b/test/elixir_conf_africa/cart_test.exs index 512d051..d445e77 100644 --- a/test/elixir_conf_africa/cart_test.exs +++ b/test/elixir_conf_africa/cart_test.exs @@ -37,8 +37,6 @@ defmodule ElixirConfAfrica.CartTest do end test "add_to_cart/2 adds an item to the cart", %{ticket_type: ticket_type} do - IO.inspect(ticket_type.id) - assert Cart.add_to_cart([%{id: 1, quantity: 1}, %{id: 2, quantity: 1}], 1) == [%{id: 2, quantity: 1}, %{id: 1, quantity: 2}]