# HG changeset patch
# User Matt Johnston <matt@ucc.asn.au>
# Date 1647423163 -28800
# Node ID 30fd047f6ebfae8df94972c2f7a782676dd73091
# Parent  e128d6bc3d8f836b251dd6cf8152fcd574b87d33
Fix pytest incorrect skip "reason" string

No change to functionality

diff -r e128d6bc3d8f -r 30fd047f6ebf test/test_svrauth.py
--- a/test/test_svrauth.py	Wed Mar 16 17:25:03 2022 +0800
+++ b/test/test_svrauth.py	Wed Mar 16 17:32:43 2022 +0800
@@ -8,21 +8,21 @@
 # Tests for server side authentication
 
 # Requires keyfile and authorized_keys set up in github action build.yml
-@pytest.mark.skipif('DBTEST_IN_ACTION' not in os.environ, reason="DBTEST_PUBKEYINFO not set")
+@pytest.mark.skipif('DBTEST_IN_ACTION' not in os.environ, reason="DBTEST_IN_ACTION not set")
 def test_pubkeyinfo(request, dropbear):
 	kf = str(Path.home() / ".ssh/id_dropbear_key2")
 	r = dbclient(request, "-i", kf, "echo -n $SSH_PUBKEYINFO", capture_output=True)
 	# stop at first space
 	assert r.stdout.decode() == "key2"
 
-@pytest.mark.skipif('DBTEST_IN_ACTION' not in os.environ, reason="DBTEST_PUBKEYINFO not set")
+@pytest.mark.skipif('DBTEST_IN_ACTION' not in os.environ, reason="DBTEST_IN_ACTION not set")
 def test_pubkeyinfo_special(request, dropbear):
 	kf = str(Path.home() / ".ssh/id_dropbear_key3")
 	r = dbclient(request, "-i", kf, "echo -n $SSH_PUBKEYINFO", capture_output=True)
 	# comment contains special characters so the SSH_PUBKEYINFO should not be set
 	assert r.stdout.decode() == ""
 
-@pytest.mark.skipif('DBTEST_IN_ACTION' not in os.environ, reason="DBTEST_PUBKEYINFO not set")
+@pytest.mark.skipif('DBTEST_IN_ACTION' not in os.environ, reason="DBTEST_IN_ACTION not set")
 def test_pubkeyinfo_okchar(request, dropbear):
 	kf = str(Path.home() / ".ssh/id_dropbear_key4")
 	r = dbclient(request, "-i", kf, "echo -n $SSH_PUBKEYINFO", capture_output=True)