summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pecan/scaffolds/rest-api/+package+/tests/test_functional.py_tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/pecan/scaffolds/rest-api/+package+/tests/test_functional.py_tmpl b/pecan/scaffolds/rest-api/+package+/tests/test_functional.py_tmpl
index f1ac12c..6f1b43b 100644
--- a/pecan/scaffolds/rest-api/+package+/tests/test_functional.py_tmpl
+++ b/pecan/scaffolds/rest-api/+package+/tests/test_functional.py_tmpl
@@ -27,7 +27,7 @@ class TestRootController(FunctionalTest):
def test_delete(self):
response = self.app.delete('/people/1')
- assert response.status_int == 200
+ assert response.status_int == 204
def test_not_found(self):
response = self.app.get('/missing/', expect_errors=True)