From f4570447fc7a4332a63b75bb643760e22b44e6c4 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 10 Feb 2018 15:52:54 -0500 Subject: [PATCH] fix dumb typo --- test/test_c_execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_c_execution.py b/test/test_c_execution.py index b05b44a8e..95f1c499b 100644 --- a/test/test_c_execution.py +++ b/test/test_c_execution.py @@ -331,7 +331,7 @@ def test_missing_compilers(): # next test that some made up compiler defaults to gcc ccomp = CCompiler(cc='foo') assert isinstance(ccomp.toolchain, GCCToolchain) - assert ccomp.cc = 'gcc' + assert ccomp.cc == 'gcc' if __name__ == "__main__": -- GitLab