Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
badrogger committed Dec 23, 2024
1 parent 35e33aa commit 20bff35
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
# pip install setuptools==75.5.0
pip install -e .[dev]
- name: Lint with flake8
Expand Down
1 change: 0 additions & 1 deletion tests/core/migration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ def test_migration(base_rules):
migrate()
res = run_cmd(['iptables', '-S'])
output = res.stdout.decode('utf-8')
print(output)
assert output == f'-P INPUT ACCEPT\n-P FORWARD ACCEPT\n-P OUTPUT ACCEPT\n-N {CUSTOM_CHAIN_NAME}\n-A {CUSTOM_CHAIN_NAME} -p tcp -m tcp --dport 2222 -j ACCEPT\n' # noqa

0 comments on commit 20bff35

Please sign in to comment.