File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change
1
+ Rename test so pytest finds it, a couple typo fixes
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def emitter_contract_data():
42
42
return EMITTER_CONTRACT_DATA
43
43
44
44
45
- # This class defines events for the EmitterContract and are used to construct
45
+ # This class defines events for the EmitterContract and is used to construct
46
46
# a fixture for contract event logs. Parameterized tests that utilize an `emitter`
47
47
# contract fixture will use this data.
48
48
class LogFunctions :
@@ -71,7 +71,7 @@ def emitter_contract_event_ids():
71
71
return LogFunctions
72
72
73
73
74
- # This class defines topics for the EmitterContract and are used to construct
74
+ # This class defines topics for the EmitterContract and is used to construct
75
75
# a fixture for contract event log topics. Parameterized tests that utilize
76
76
# an `emitter` contract fixture will use this data.
77
77
class LogTopics :
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ async def test_async_set_text_fails_with_bad_address(async_ens):
112
112
113
113
114
114
@pytest .mark .asyncio
115
- async def async_test_set_text_pass_in_transaction_dict (async_ens ):
115
+ async def test_async_set_text_pass_in_transaction_dict (async_ens ):
116
116
accounts = await async_ens .w3 .eth .accounts
117
117
address = accounts [2 ]
118
118
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ def _compute_gas_price(
158
158
159
159
:param probabilities: An iterable of `Probability` named-tuples
160
160
sorted in reverse order.
161
- :param desired_probability: An floating point representation of the desired
161
+ :param desired_probability: A floating point representation of the desired
162
162
probability. (e.g. ``85% -> 0.85``)
163
163
"""
164
164
first = probabilities [0 ]
You can’t perform that action at this time.
0 commit comments