We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c20b1f commit a5d4914Copy full SHA for a5d4914
README.md
@@ -247,8 +247,9 @@ Example:
247
```python
248
@pytest.mark.asyncio
249
async def test_patient_subscription(aidbox_client, safe_db, sdk):
250
+ was_patient_sub_triggered = sdk.was_subscription_triggered("Patient")
251
patient = await aidbox_client.resource("Patient", name=[{"family": "Test"}]).save()
- await sdk.was_subscription_triggered("Patient")
252
+ await was_patient_sub_triggered
253
# assertions...
254
```
255
0 commit comments