@@ -167,8 +167,7 @@ Traceback (most recent call last):
167
167
File "...goat-book/functional_tests/tests.py", line 120, in
168
168
test_layout_and_styling
169
169
self.assertAlmostEqual(
170
- AssertionError: 103.333... != 512 within 10 delta (408.666...
171
- difference)
170
+ AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
172
171
173
172
---------------------------------------------------------------------
174
173
Ran 3 tests in 9.188s
@@ -226,7 +225,7 @@ That gives us another test failure:
226
225
File "...goat-book/functional_tests/tests.py", line 132, in
227
226
test_layout_and_styling
228
227
self.assertAlmostEqual(
229
- AssertionError: 103.333... != 512 within 10 delta (408.666...
228
+ AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
230
229
----
231
230
232
231
Let's commit just the FT:
@@ -492,7 +491,7 @@ That's a refactor of the way our templates work.
492
491
We rerun the FTs to make sure we haven't broken anything:
493
492
494
493
----
495
- AssertionError: 103.333... != 512 within 10 delta (408.666...
494
+ AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
496
495
----
497
496
498
497
Sure enough, they're still getting to exactly where they were before.
@@ -600,7 +599,7 @@ TIP: Take the time to browse through the
600
599
Does that work?
601
600
602
601
----
603
- AssertionError: 103.333... != 512 within 10 delta (408.666...
602
+ AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
604
603
----
605
604
606
605
Hmm. No. Why isn't our CSS loading?
@@ -713,7 +712,7 @@ image::images/prettified-1.png["The list page with centered header."]
713
712
If you run the FT though, annoyingly, it still won't pass:
714
713
715
714
----
716
- AssertionError: 103.333... != 512 within 10 delta (408.666...
715
+ AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
717
716
----
718
717
719
718
That's because, although `runserver` automagically finds static files,
0 commit comments