@@ -15,7 +15,7 @@ Feature: Authorized endpoint API tests for the noop authentication module
1515 Then The status code of the response is 200
1616 And The body of the response is the following
1717 """
18- {"user_id": "00000000-0000-0000-0000-000","username": "lightspeed-user","skip_userid_check": True }
18+ {"user_id": "00000000-0000-0000-0000-000","username": "lightspeed-user","skip_userid_check": true }
1919 """
2020
2121 Scenario : Check if the authorized endpoint works when auth token is not provided
@@ -24,7 +24,7 @@ Feature: Authorized endpoint API tests for the noop authentication module
2424 Then The status code of the response is 200
2525 And The body of the response is the following
2626 """
27- {"user_id": "test_user","username": "lightspeed-user","skip_userid_check": True }
27+ {"user_id": "test_user","username": "lightspeed-user","skip_userid_check": true }
2828 """
2929
3030 Scenario : Check if the authorized endpoint works when user_id is not provided
@@ -34,7 +34,7 @@ Feature: Authorized endpoint API tests for the noop authentication module
3434 Then The status code of the response is 200
3535 And The body of the response is the following
3636 """
37- {"user_id": "00000000-0000-0000-0000-000","username": "lightspeed-user","skip_userid_check": True }
37+ {"user_id": "00000000-0000-0000-0000-000","username": "lightspeed-user","skip_userid_check": true }
3838 """
3939
4040 Scenario : Check if the authorized endpoint works when providing empty user_id
@@ -44,7 +44,7 @@ Feature: Authorized endpoint API tests for the noop authentication module
4444 Then The status code of the response is 200
4545 And The body of the response is the following
4646 """
47- {"user_id": "","username": "lightspeed-user","skip_userid_check": True }
47+ {"user_id": "","username": "lightspeed-user","skip_userid_check": true }
4848 """
4949
5050 Scenario : Check if the authorized endpoint works when providing proper user_id
@@ -54,5 +54,5 @@ Feature: Authorized endpoint API tests for the noop authentication module
5454 Then The status code of the response is 200
5555 And The body of the response is the following
5656 """
57- {"user_id": "test_user","username": "lightspeed-user","skip_userid_check": True }
57+ {"user_id": "test_user","username": "lightspeed-user","skip_userid_check": true }
5858 """
0 commit comments