From 8463b331754234104a4db76e34e4d63e31a2b521 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Mon, 23 Mar 2020 18:41:45 +0100 Subject: [PATCH] renamed DummySheet to MockWorkbookSheet --- tests/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index f9b3b3a..540d81f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,9 +1,11 @@ +""" Global test fixtures and Mocks """ + from pathlib import Path import pytest -class DummySheet: +class MockWorkbookSheet: def __init__(self, data): self._data = data