1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-29 08:56:23 -07:00
Commit graph

10 commits

Author SHA1 Message Date
deepsource-autofix[bot]
a9e9acd211
refactor: replace range(len(...)) with enumerate(...)
Using `range(len(...))` is not pythonic. Python does not have not index-based loops. Instead, it uses collection iterators.  Python has a built-in method `enumerate` which adds a counter to an iterable.
2023-05-22 22:04:59 +00:00
deepsource-autofix[bot]
f0bd56c8c0
refactor: remove unnecessary whitespace
Blank lines should not contain any tabs or spaces.
2023-05-22 21:55:26 +00:00
Eggbertx
0b12231f28 Delete recent test post after its creation was confirmed 2023-05-22 13:59:21 -07:00
deepsource-autofix[bot]
65461034c1
refactor: use identity check for comparison to a singleton
Comparisons to the singleton objects, like `True`, `False`, and `None`, should be done with identity, not equality. Use `is` or `is not`.
2023-05-22 15:54:57 +00:00
deepsource-autofix[bot]
4babee6f42
refactor: remove unnecessary whitespace
Blank lines should not contain any tabs or spaces.
2023-05-22 15:52:37 +00:00
Eggbertx
c75a5fed0f Fix issues brought up by deepsource 2023-05-22 08:49:32 -07:00
Eggbertx
401ff26369 Add "Log me out everywhere" and "Recent posts" selenium tests 2023-05-19 13:46:55 -07:00
Eggbertx
95acd98acc Add driver property as shortcut to self.options.driver 2023-05-19 12:55:51 -07:00
Eggbertx
8fad3b87a8 Make single test argument work 2023-05-19 12:52:01 -07:00
Eggbertx
99af2ad64f Separate the tests for better organization 2023-05-18 14:25:30 -07:00