Merge pull request #8306 from thedoubl3j/sanity_ignore

fixing quotes to not fail smart quotes sanity test

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-10-09 15:16:13 +00:00 committed by GitHub
commit bb15132031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ When trying to fix a bug, it is best to replicate its behavior within a test wit
The unit tests are stored in the `test/awx` directory and, where possible, test interactions between the collections modules and the AWX database. This is achieved by using a Python testing suite and having a mocked layer which emulates interactions with the Tower API. You do not need a server to run these unit tests. The depth of testing is not fixed and can change from module to module.
Lets take a closer look at the `test_token.py` file (which tests the `tower_token` module):
Let's take a closer look at the `test_token.py` file (which tests the `tower_token` module):
```
from __future__ import (absolute_import, division, print_function)
@ -56,7 +56,7 @@ A completeness failure will generate a large ASCII table in the Zuul log indicat
![Completeness Test Output](images/completeness_test_output.png)
To find the error, look at the last column and search for the term “failure”. There will most likely be some failures which have been deemed acceptable and will typically say “non-blocking” next to them. Those errors can be safely ignored.
To find the error, look at the last column and search for the term "failure". There will most likely be some failures which have been deemed acceptable and will typically say "non-blocking" next to them. Those errors can be safely ignored.
## Integration Tests