(exchange)
| 248 | return get_test_files_sync(properties, ws) |
| 249 | |
| 250 | async def close(exchange): |
| 251 | if (not IS_SYNCHRONOUS and hasattr(exchange, 'close')): |
| 252 | await exchange.close() |
| 253 | |
| 254 | def is_null_value(value): |
| 255 | return value is None |
no test coverage detected
searching dependent graphs…