Skip to content

Commit

Permalink
Adjust spacing
Browse files Browse the repository at this point in the history
I hate this
  • Loading branch information
mnwhite committed Feb 20, 2024
1 parent b3baff4 commit c8e63fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HARK/tests/test_HARKutilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"""
# Bring in modules we need
import unittest
import matplotlib.pyplot as plt
from types import SimpleNamespace

import matplotlib.pyplot as plt
import numpy as np

from HARK.rewards import (
Expand Down Expand Up @@ -84,10 +84,10 @@ def test_asset_grid(self):
test = np.unique(np.diff(aXtraGrid).round(decimals=3))

self.assertEqual(test.size, 1)

def test_make_figs(self):
# Test the make_figs() function with a trivial output
plt.figure()
plt.plot(np.linspace(1,5,40),np.linspace(4,8,40) )
make_figs('test', True , False, target_dir='')
plt.plot(np.linspace(1, 5, 40), np.linspace(4, 8, 40))
make_figs("test", True , False, target_dir="")
plt.clf()

0 comments on commit c8e63fb

Please sign in to comment.