From 66be24184e4c26565cbe66a230df155a110edb12 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Sat, 18 Jul 2020 02:02:36 +0300 Subject: [PATCH] fix: chain fixture --- brownie/test/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brownie/test/fixtures.py b/brownie/test/fixtures.py index 0c3ffbc35..643870594 100644 --- a/brownie/test/fixtures.py +++ b/brownie/test/fixtures.py @@ -64,7 +64,7 @@ def a(self): @pytest.fixture(scope="session") def chain(self): """Yields a Chain object, used for interacting with the blockchain.""" - yield brownie.rpc + yield brownie.chain @pytest.fixture(scope="session") def Contract(self):