Skip to content

Commit 5d00c12

Browse files
author
Sven Groot
committed
Fix unused variables F841
1 parent 3068795 commit 5d00c12

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

inertia/tests/test_tests.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@
33

44
class TestTestCase(InertiaTestCase):
55
def test_include_props(self):
6-
response = self.client.get("/props/")
6+
self.client.get("/props/")
77

88
self.assertIncludesProps({"name": "Brandon"})
99

1010
def test_has_exact_props(self):
11-
response = self.client.get("/props/")
11+
self.client.get("/props/")
1212

1313
self.assertHasExactProps({"name": "Brandon", "sport": "Hockey"})
1414

1515
def test_has_template_data(self):
16-
response = self.client.get("/template_data/")
16+
self.client.get("/template_data/")
1717

1818
self.assertIncludesTemplateData({"name": "Brian"})
1919

2020
def test_has_exact_template_data(self):
21-
response = self.client.get("/template_data/")
21+
self.client.get("/template_data/")
2222

2323
self.assertHasExactTemplateData({"name": "Brian", "sport": "Basketball"})
2424

2525
def test_component_name(self):
26-
response = self.client.get("/props/")
26+
self.client.get("/props/")
2727

2828
self.assertComponentUsed("TestComponent")

0 commit comments

Comments
 (0)