mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 17:19:42 +00:00
Fix whitespace
This commit is contained in:
parent
b1f030cdbe
commit
30f13eab89
1 changed files with 11 additions and 11 deletions
|
|
@ -256,20 +256,20 @@ def test_step_form_doc(app):
|
||||||
step.temp.data = Decimal('152')
|
step.temp.data = Decimal('152')
|
||||||
step.time.data = Decimal('60')
|
step.time.data = Decimal('60')
|
||||||
assert step.doc == {
|
assert step.doc == {
|
||||||
'name': 'Test Mash Step',
|
'name': 'Test Mash Step',
|
||||||
'type': 'Infusion',
|
'type': 'Infusion',
|
||||||
'temp': '152',
|
'temp': '152',
|
||||||
'time': '60'
|
'time': '60'
|
||||||
}
|
}
|
||||||
|
|
||||||
step.amount.data = Decimal('3.5')
|
step.amount.data = Decimal('3.5')
|
||||||
assert step.doc == {
|
assert step.doc == {
|
||||||
'name': 'Test Mash Step',
|
'name': 'Test Mash Step',
|
||||||
'type': 'Infusion',
|
'type': 'Infusion',
|
||||||
'temp': '152',
|
'temp': '152',
|
||||||
'time': '60',
|
'time': '60',
|
||||||
'amount': '3.5'
|
'amount': '3.5'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def test_yeast_form_doc(app):
|
def test_yeast_form_doc(app):
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue