Skip to content

Commit

Permalink
Move new assert fixture into ruff fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
cnpryer committed Jun 18, 2023
1 parent 55b21cb commit 04ee3e7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 62 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
source: crates/ruff_python_formatter/src/lib.rs
expression: snapshot
---
## Input
```py
assert (
# Some comment
True # Some comment
# Some comment
), "Some string" # Some comment
# Some comment
```



## Output
```py
assert (
# Some comment
True # Some comment
# Some comment
), "Some string" # Some comment
# Some comment
```


0 comments on commit 04ee3e7

Please sign in to comment.