acoustics: fix

There's a bit of LaTeX math code in a comment in a test file:

```
    .. math:: L = 10 \cdot \\log_{10}{\\left(\\frac{MS}{p_r^2} \\right)}
```

which of course should be `\\cdot`.

I could patch it, but I think skipping deprecation warnings in tests is
probably ok... (If nothing else it's easier.)

(cherry picked from commit dbc085cb44b90e4d533b6a24b7c9ca3c2c93d5e1)
This commit is contained in:
Harrison Houghton 2021-05-26 10:59:47 -04:00
parent 84a08eb98d
commit 5369265a53
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ buildPythonPackage rec {
checkPhase = ''
pushd tests
py.test ./.
py.test -Wignore::DeprecationWarning ./.
popd
'';