Changes between Initial Version and Version 1 of Ticket #34484


Ignore:
Timestamp:
Apr 11, 2023, 9:46:35 AM (13 months ago)
Author:
Adam Johnson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34484 – Description

    initial v1  
    2222}}}
    2323
     24Leading to:
     25
     26{{{
     27test_adding (test_regression.ExampleTests.test_adding) ... ok
     28test_looking (test_regression.ExampleTests.test_looking) ... FAIL
     29
     30======================================================================
     31FAIL: test_looking (test_regression.ExampleTests.test_looking)
     32----------------------------------------------------------------------
     33Traceback (most recent call last):
     34  File "/Users/chainz/Documents/Projects/django/tests/test_regression.py", line 16, in test_looking
     35    self.assertEqual(self.request.session, {})
     36AssertionError: {'foo': 1} != {}
     37- {'foo': 1}
     38+ {}
     39}}}
     40
    2441(Simplified from a real test suite.)
    2542
Back to Top