Skip to content
Snippets Groups Projects
Commit 4d82a1a9 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Make flake8 happier about test.py

parent 35540bd5
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ import numpy.linalg as la ...@@ -3,7 +3,7 @@ import numpy.linalg as la
import pyopencl as cl import pyopencl as cl
import pyopencl.array # noqa import pyopencl.array # noqa
import pyopencl.clrandom # noqa import pyopencl.clrandom # noqa
import loopy as lp import loopy as lp # noqa
import sys import sys
import logging import logging
...@@ -41,7 +41,7 @@ def test_compute_flux_derivatives(ctx_factory): ...@@ -41,7 +41,7 @@ def test_compute_flux_derivatives(ctx_factory):
metrics = f.random_array(ndim, ndim, nx+6, ny+6, nz+6) metrics = f.random_array(ndim, ndim, nx+6, ny+6, nz+6)
metric_jacobians = f.random_array(nx+6, ny+6, nz+6) metric_jacobians = f.random_array(nx+6, ny+6, nz+6)
flux_derivatives = f.compute_flux_derivatives(ctx_factory, f.compute_flux_derivatives(ctx_factory,
nvars=nvars, ndim=ndim, nx=nx, ny=ny, nz=nz, nvars=nvars, ndim=ndim, nx=nx, ny=ny, nz=nz,
states=states, fluxes=fluxes, metrics=metrics, states=states, fluxes=fluxes, metrics=metrics,
metric_jacobians=metric_jacobians) metric_jacobians=metric_jacobians)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment