From 4dab6545b620969c66858cd82f30ec2775dfd5c1 Mon Sep 17 00:00:00 2001 From: Christoph Geschwind Date: Wed, 29 Apr 2020 16:30:56 +0200 Subject: [PATCH] Fix two tiny errors in the README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks for your work! 🍻 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92b5a7f..2d1072c 100644 --- a/README.md +++ b/README.md @@ -315,8 +315,8 @@ defmodule MyTest do assert_called Network.update( :meck.is(fn user -> - assert user.__struct__ = User - assert user.id = 1 + assert user.__struct__ == User + assert user.id == 1 # matcher must return true when the match succeeds true