Skip to content

Commit

Permalink
Update test_gaussian_propagator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerjolly authored Jan 15, 2024
1 parent df03522 commit 08a73ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_gaussian_propagator.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def check_gaussian_propagation(
def test_3D_case(gaussian):
# - 3D case
dim = "xyt"
lo = (-25e-6, -25e-6, -60e-15)
hi = (+25e-6, +25e-6, +60e-15)
lo = (-35e-6, -35e-6, -60e-15)
hi = (+35e-6, +35e-6, +60e-15)
npoints = (200, 200, 100)

laser = Laser(dim, lo, hi, npoints, gaussian)
Expand All @@ -76,7 +76,7 @@ def test_RT_case(gaussian):
# - Cylindrical case
dim = "rt"
lo = (0e-6, -60e-15)
hi = (25e-6, +60e-15)
hi = (35e-6, +60e-15)
npoints = (200, 100)

laser = Laser(dim, lo, hi, npoints, gaussian)
Expand Down

0 comments on commit 08a73ae

Please sign in to comment.