Skip to content

Commit

Permalink
tests: Fix missing env var error
Browse files Browse the repository at this point in the history
Temporary fix for missing environment variable.

Signed-off-by: Jorgen Kvalvaag <[email protected]>
  • Loading branch information
jorgenmk committed Nov 21, 2024
1 parent 9d85452 commit f6839c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/on_target/tests/test_conn_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

SEGGER_NRF53 = os.getenv('SEGGER_NRF53')
SEGGER_NRF91 = os.getenv('SEGGER_NRF91')
CONNECTIVITY_BRIDGE_UART = "THINGY91X_" + os.getenv('UART_ID')
CONNECTIVITY_BRIDGE_UART = "THINGY91X_" + os.getenv('UART_ID', "")



Expand Down
2 changes: 1 addition & 1 deletion tests/on_target/tests/test_serial_dfu.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

SEGGER_NRF53 = os.getenv('SEGGER_NRF53')
SEGGER_NRF91 = os.getenv('SEGGER_NRF91')
CONNECTIVITY_BRIDGE_UART = "THINGY91X_" + os.getenv('UART_ID')
CONNECTIVITY_BRIDGE_UART = "THINGY91X_" + os.getenv('UART_ID', "")

@pytest.fixture(scope="function")
def t91x_dfu():
Expand Down

0 comments on commit f6839c0

Please sign in to comment.