[MIG] sentry: Migration to 14.0
parent
fd159a96b7
commit
51ec40e854
|
@ -3,9 +3,9 @@
|
||||||
{
|
{
|
||||||
"name": "Sentry",
|
"name": "Sentry",
|
||||||
"summary": "Report Odoo errors to Sentry",
|
"summary": "Report Odoo errors to Sentry",
|
||||||
"version": "13.0.1.1.0",
|
"version": "14.0.1.0.0",
|
||||||
"category": "Extra Tools",
|
"category": "Extra Tools",
|
||||||
"website": "https://odoo-community.org/",
|
"website": "https://github.com/OCA/server-tools",
|
||||||
"author": "Mohammed Barsi,"
|
"author": "Mohammed Barsi,"
|
||||||
"Versada,"
|
"Versada,"
|
||||||
"Nicolas JEUDY,"
|
"Nicolas JEUDY,"
|
||||||
|
|
|
@ -41,7 +41,8 @@ class TestOdooCookieSanitizer(unittest.TestCase):
|
||||||
self.assertTrue("request" in result)
|
self.assertTrue("request" in result)
|
||||||
http = result["request"]
|
http = result["request"]
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
http["cookies"], "website_lang=en_us;session_id;foo=bar".format(m=proc.MASK)
|
http["cookies"],
|
||||||
|
"website_lang=en_us;session_id={m};foo=bar".format(m=proc.MASK),
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_cookie_header(self):
|
def test_cookie_header(self):
|
||||||
|
|
Loading…
Reference in New Issue