mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-13 00:32:16 -05:00
7 lines
142 B
Python
7 lines
142 B
Python
from app.errors import VirusScanError
|
|
|
|
|
|
def test_virus_scan_error():
|
|
vse = VirusScanError("a message")
|
|
assert "a message" in vse.args
|