diff options
| author | Frederick Muriuki Muriithi | 2024-02-20 10:57:56 +0300 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2024-02-20 10:57:56 +0300 |
| commit | ce243a57b24d6adecb169487e706290d91b22d19 (patch) | |
| tree | 6b0b06a444c16ffb8be1c65fa4e5b78ced6a0615 /tests/qc/test_cells_standard_error.py | |
| parent | a4324cd24b5a14fbcf19a6e04d2b76fb2838038e (diff) | |
| download | gn-uploader-ce243a57b24d6adecb169487e706290d91b22d19.tar.gz | |
Track filename in the errors
R/qtl2 bundles can contain more than one file, of the same type. When errors are encountered in any of the files, we need to be able to inform the user which file it is, in addition to the line and column number.
Diffstat (limited to 'tests/qc/test_cells_standard_error.py')
| -rw-r--r-- | tests/qc/test_cells_standard_error.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qc/test_cells_standard_error.py b/tests/qc/test_cells_standard_error.py index 90c13cf..fa9f1db 100644 --- a/tests/qc/test_cells_standard_error.py +++ b/tests/qc/test_cells_standard_error.py @@ -17,4 +17,4 @@ def test_cell_standard_error_value_errors_if_less_than_six_decimal_places2(num_s THEN: `se_invalid_value` returns a `None`. """ line, col = randint(0, 100), randint(0, 20) - assert invalid_value(line, col, num_str) is None + assert invalid_value("test.file", line, col, num_str) is None |
