Skip to content

Commit 6bd7478

Browse files
author
Saarthak Mohan
committed
Change comma to period
1 parent 47b8d04 commit 6bd7478

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/nidcpower/system_tests/test_system_nidcpower.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ class TestGrpc(SystemTests):
11001100
@pytest.fixture(scope='class')
11011101
def grpc_channel(self):
11021102
current_directory = os.path.dirname(os.path.abspath(__file__))
1103-
config_file_path = os.path.join(current_directory, 'grpc_server_config,json')
1103+
config_file_path = os.path.join(current_directory, 'grpc_server_config.json')
11041104
with system_test_utilities.GrpcServerProcess(config_file_path) as proc:
11051105
channel = grpc.insecure_channel(f"localhost:{proc.server_port}")
11061106
yield channel

src/nidigital/system_tests/test_system_nidigital.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ class TestGrpc(SystemTests):
13511351
@pytest.fixture(scope='class')
13521352
def grpc_channel(self):
13531353
current_directory = os.path.dirname(os.path.abspath(__file__))
1354-
config_file_path = os.path.join(current_directory, 'grpc_server_config,json')
1354+
config_file_path = os.path.join(current_directory, 'grpc_server_config.json')
13551355
with system_test_utilities.GrpcServerProcess(config_file_path) as proc:
13561356
channel = grpc.insecure_channel(f"localhost:{proc.server_port}")
13571357
yield channel

src/nidmm/system_tests/test_system_nidmm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class TestGrpc(SystemTests):
331331
@pytest.fixture(scope='class')
332332
def grpc_channel(self):
333333
current_directory = os.path.dirname(os.path.abspath(__file__))
334-
config_file_path = os.path.join(current_directory, 'grpc_server_config,json')
334+
config_file_path = os.path.join(current_directory, 'grpc_server_config.json')
335335
with system_test_utilities.GrpcServerProcess(config_file_path) as proc:
336336
channel = grpc.insecure_channel(f"localhost:{proc.server_port}")
337337
yield channel

src/nifgen/system_tests/test_system_nifgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ class TestGrpc(SystemTests):
517517
@pytest.fixture(scope='class')
518518
def grpc_channel(self):
519519
current_directory = os.path.dirname(os.path.abspath(__file__))
520-
config_file_path = os.path.join(current_directory, 'grpc_server_config,json')
520+
config_file_path = os.path.join(current_directory, 'grpc_server_config.json')
521521
with system_test_utilities.GrpcServerProcess(config_file_path) as proc:
522522
channel = grpc.insecure_channel(f"localhost:{proc.server_port}")
523523
yield channel

src/niscope/system_tests/test_system_niscope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ class TestGrpc(SystemTests):
613613
@pytest.fixture(scope='class')
614614
def grpc_channel(self):
615615
current_directory = os.path.dirname(os.path.abspath(__file__))
616-
config_file_path = os.path.join(current_directory, 'grpc_server_config,json')
616+
config_file_path = os.path.join(current_directory, 'grpc_server_config.json')
617617
with system_test_utilities.GrpcServerProcess(config_file_path) as proc:
618618
channel = grpc.insecure_channel(f"localhost:{proc.server_port}")
619619
yield channel

src/niswitch/system_tests/test_system_niswitch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class TestGrpc(SystemTests):
196196
@pytest.fixture(scope='class')
197197
def grpc_channel(self):
198198
current_directory = os.path.dirname(os.path.abspath(__file__))
199-
config_file_path = os.path.join(current_directory, 'grpc_server_config,json')
199+
config_file_path = os.path.join(current_directory, 'grpc_server_config.json')
200200
with system_test_utilities.GrpcServerProcess(config_file_path) as proc:
201201
channel = grpc.insecure_channel(f"localhost:{proc.server_port}")
202202
yield channel

0 commit comments

Comments
 (0)