We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccac0b3 commit 00d7ef7Copy full SHA for 00d7ef7
tests/test_db.py
@@ -38,7 +38,7 @@ def init():
38
"ref": "ref",
39
"firebasedatabasehost": "firebasedatabasehost",
40
"location": "location",
41
- "authtype": "app_user",
+ "authtype": "app-user",
42
"authid": "auth-id",
43
},
44
data={"delta": "delta"},
@@ -49,7 +49,7 @@ def init():
49
func.assert_called_once()
50
event = func.call_args.args[0]
51
self.assertIsNotNone(event)
52
- self.assertEqual(event.auth_type, "app_user")
+ self.assertEqual(event.auth_type, "app-user")
53
self.assertEqual(event.auth_id, "auth-id")
54
55
self.assertEqual(hello, "world")
0 commit comments