mirror of
https://github.com/wallabag/wallabag.git
synced 2026-03-19 01:27:37 +01:00
Compare commits
3 Commits
01c5fab121
...
4b6824dfe9
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b6824dfe9 | |||
| 5db128a071 | |||
| c4f615e711 |
@ -15,10 +15,6 @@
|
||||
<div class="card-content">
|
||||
<div class="row">
|
||||
<h5>{{ status_code }}: {{ status_text }}</h5>
|
||||
<p>{{ exception.message }}</p>
|
||||
{# {% for trace in exception.trace %}
|
||||
<p>{{ trace.class }} - {{ trace.type }} - {{ trace.file }} - {{ trace.line }}</p>
|
||||
{% endfor %} #}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1130,7 +1130,7 @@ class ConfigControllerTest extends WallabagTestCase
|
||||
|
||||
$this->assertSame(400, $client->getResponse()->getStatusCode());
|
||||
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
||||
$this->assertStringContainsString('Bad CSRF token.', $body[0]);
|
||||
$this->assertStringContainsString('400: Bad Request', $body[0]);
|
||||
}
|
||||
|
||||
public function testChangeLocaleWithReferer()
|
||||
|
||||
@ -732,7 +732,7 @@ class EntryControllerTest extends WallabagTestCase
|
||||
|
||||
$this->assertSame(400, $client->getResponse()->getStatusCode());
|
||||
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
||||
$this->assertStringContainsString('Bad CSRF token.', $body[0]);
|
||||
$this->assertStringContainsString('400: Bad Request', $body[0]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user