You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's an example of how the snapshot is currently formatted:
snapshots['test_foo 1'] = '''ID Name Description
------------------------------------ ------------ -------------------------------
32fd8c27-9110-463f-89c0-eb676814923a Item 1 An item with a long description
32fd8c27-9110-463f-89c0-eb676814923a Item 2
32fd8c27-9110-463f-89c0-eb676814923a Another item
'''
I think the following is better for reviewing the snapshots, and is the exact same string:
snapshots['test_foo 1'] = '''\
ID Name Description
------------------------------------ ------------ -------------------------------
32fd8c27-9110-463f-89c0-eb676814923a Item 1 An item with a long description
32fd8c27-9110-463f-89c0-eb676814923a Item 2
32fd8c27-9110-463f-89c0-eb676814923a Another item
'''
Here's an example of how the snapshot is currently formatted:
I think the following is better for reviewing the snapshots, and is the exact same string:
I can provide a PR if this would be accepted
In the meantime, I'm using
The text was updated successfully, but these errors were encountered: