From df0352268e843ca9436bdb3b1fd7560ead3ff54a Mon Sep 17 00:00:00 2001 From: Spencer Jolly <35569785+spencerjolly@users.noreply.github.com> Date: Mon, 15 Jan 2024 10:57:57 +0100 Subject: [PATCH] Update test_gaussian_propagator.py --- tests/test_gaussian_propagator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_gaussian_propagator.py b/tests/test_gaussian_propagator.py index 448423ab..5a4cb353 100644 --- a/tests/test_gaussian_propagator.py +++ b/tests/test_gaussian_propagator.py @@ -66,7 +66,7 @@ def test_3D_case(gaussian): dim = "xyt" lo = (-25e-6, -25e-6, -60e-15) hi = (+25e-6, +25e-6, +60e-15) - npoints = (100, 100, 100) + npoints = (200, 200, 100) laser = Laser(dim, lo, hi, npoints, gaussian) check_gaussian_propagation(laser) @@ -77,7 +77,7 @@ def test_RT_case(gaussian): dim = "rt" lo = (0e-6, -60e-15) hi = (25e-6, +60e-15) - npoints = (100, 100) + npoints = (200, 100) laser = Laser(dim, lo, hi, npoints, gaussian) check_gaussian_propagation(laser)