From 8d31ed8ce5add07ed31e22235c4e0c2eef5e43f5 Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@gmail.com> Date: Thu, 28 May 2020 18:27:31 +0200 Subject: [PATCH] More typos... --- test/test_operation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_operation.py b/test/test_operation.py index 1b940d5a..33f51bd1 100644 --- a/test/test_operation.py +++ b/test/test_operation.py @@ -183,7 +183,7 @@ class TestExecutionTime: def test_set_execution_time(self): bfly = Butterfly() - bfly.exection_time = 3 + bfly.execution_time = 3 assert bfly.execution_time == 3 @@ -215,7 +215,7 @@ class TestPlotCoordinates(): assert lat == [[0, 0], [0, 1], [3, 1], [3, 0], [0, 0]] assert exe == [[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]] - def test_complicated_case(): + def test_complicated_case(self): bfly = Butterfly(latency_offsets={'in0': 2, 'in1': 3, 'out0': 5, 'out1': 10}) bfly.execution_time = 7 @@ -234,7 +234,7 @@ class TestIOCoordinates(): assert i_c == [[0, 0.5]] assert o_c == [[3, 0.5]] - def test_complicated_case(): + def test_complicated_case(self): bfly = Butterfly(latency_offsets={'in0': 2, 'in1': 3, 'out0': 5, 'out1': 10}) bfly.execution_time = 7 -- GitLab