(client)
| 177 | |
| 178 | @pytest.mark.asyncio |
| 179 | async def test_api_get_missing_track_meta(client): |
| 180 | response = client.get( |
| 181 | f'/api/datasources/{test_datasource["account"]}/{test_datasource["container"]}/file_path/track' |
| 182 | ) |
| 183 | assert response.status_code == 404 |
| 184 | |
| 185 | |
| 186 | @pytest.mark.asyncio |