Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
heplesser committed Apr 11, 2023
1 parent 3ea37ed commit 957c0e8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nestkernel/vp_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ nest::VPManager::set_status( const DictionaryDatum& d )

if ( force_singlethreading_ and n_threads > 1 )
{
throw BadProperty( "This installation of NEST was built without support for multiple threads." );
throw BadProperty( "This installation of NEST was built without support for multiple threads." );
}

// We only want to act if new values differ from the old
Expand Down
2 changes: 1 addition & 1 deletion testsuite/pytests/mpi/2/test_connect_arrays_mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
HAVE_OPENMP = nest.ll_api.sli_func("is_threaded")


@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@unittest.skipIf(not HAVE_MPI4PY, 'mpi4py is not available')
class TestConnectArraysMPICase(unittest.TestCase):
"""
Expand Down
2 changes: 1 addition & 1 deletion testsuite/pytests/mpi/4/test_consistent_local_vps.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
HAVE_OPENMP = nest.ll_api.sli_func("is_threaded")


@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
def test_consistent_local_vps():
"""
Test local_vps field of kernel status.
Expand Down
2 changes: 1 addition & 1 deletion testsuite/pytests/test_recording_backend_ascii.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
HAVE_OPENMP = nest.ll_api.sli_func("is_threaded")


@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
class TestRecordingBackendASCII(unittest.TestCase):

def testAAAOverwriteFiles(self):
Expand Down
2 changes: 1 addition & 1 deletion testsuite/pytests/test_recording_backend_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
HAVE_OPENMP = nest.ll_api.sli_func("is_threaded")


@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
class TestRecordingBackendMemory(unittest.TestCase):

def testEventsDict(self):
Expand Down
2 changes: 1 addition & 1 deletion testsuite/pytests/test_weight_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
HAVE_OPENMP = nest.ll_api.sli_func("is_threaded")


@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@unittest.skipIf(not HAVE_OPENMP, 'NEST was compiled without multi-threading')
@nest.ll_api.check_stack
class WeightRecorderTestCase(unittest.TestCase):
"""Tests for the Weight Recorder"""
Expand Down

0 comments on commit 957c0e8

Please sign in to comment.