Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Feb 15, 2018
1 parent 37b0975 commit d1d754b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cunit/test_darray_frame.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#define LON_LEN_SHORT 2

/* The number of timesteps of data to write. */
#define NUM_TIMESTEPS 2
#define NUM_TIMESTEPS 3

/* The names of variable in the netCDF output files. */
#define VAR_NAME "prc"
Expand Down Expand Up @@ -120,7 +120,7 @@ int test_frame_simple(int iosysid, int num_iotypes, int *iotype, int my_rank,
ERR(ret);

/* Write records of data. */
for (int r = 0; r < TIME_LEN_SHORT; r++)
for (int r = 0; r < NUM_TIMESTEPS; r++)
{
int test_data_int[elements_per_pe];

Expand Down

0 comments on commit d1d754b

Please sign in to comment.