Make the new test data files installable

There's an existing rule that matches *.txt
This commit is contained in:
Jean-Paul Calderone 2020-11-30 13:37:21 -05:00
parent 1a5efa5ec9
commit 17ed8afd2f
3 changed files with 2 additions and 2 deletions

View File

@ -427,8 +427,8 @@ class Basic(testutil.ReallyEqualMixin, unittest.TestCase):
accounts.touch()
data = FilePath(__file__).sibling(b"data")
privkey = data.child(b"openssh-rsa-2048")
pubkey = data.child(b"openssh-rsa-2048.pub")
privkey = data.child(b"openssh-rsa-2048.txt")
pubkey = data.child(b"openssh-rsa-2048.pub.txt")
basedir = u"client.Basic.test_ftp_create"
create_node_dir(basedir, "testing")