Skip to content

Commit

Permalink
testsuite: fix spelling in schema test functions
Browse files Browse the repository at this point in the history
Problem: schema_test01 and schema_test02 have
misspellings of "constructors." Fix the spelling.
  • Loading branch information
milroy committed Jul 28, 2023
1 parent 0b15c85 commit 461dc6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resource/schema/test/schema_test01.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

using namespace Flux::resource_model;

static int test_constuctors_and_overload ()
static int test_constructors_and_overload ()
{
bool bo = false;
schedule_t *sched1, *sched2, *sched3, *sched4, *sched5 = nullptr;
Expand Down Expand Up @@ -86,7 +86,7 @@ int main (int argc, char *argv[])
{
plan (7);

test_constuctors_and_overload ();
test_constructors_and_overload ();

done_testing ();

Expand Down
4 changes: 2 additions & 2 deletions resource/schema/test/schema_test02.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

using namespace Flux::resource_model;

static int test_constuctors_and_overload ()
static int test_constructors_and_overload ()
{
bool bo = false;
size_t len = 5;
Expand Down Expand Up @@ -173,7 +173,7 @@ int main (int argc, char *argv[])
{
plan (12);

test_constuctors_and_overload ();
test_constructors_and_overload ();

done_testing ();

Expand Down

0 comments on commit 461dc6e

Please sign in to comment.