Commit 5595d962 authored by Jacob Kaufman's avatar Jacob Kaufman
Browse files

Update AstroMathTest.js

Fixed projection to 360 test
parent 6766695e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -70,10 +70,10 @@ describe('Testing AstroMath Functions', function() {
    })

    // testing lonTo360 function
    it('Testing lonTo360 Non-Cylindrical: -180 should be 0 ', function() {
    it('Testing lonTo360 Non-Cylindrical: -180 should be 180 ', function() {
      // add an assertion
      let majorRadius = testMath.lonTo360(-180, "");
      expect(majorRadius).to.equal(0);
      expect(majorRadius).to.equal(180);
    })

    // testing domainToPositiveWest function