From b87d6947b6ba78d131759c4136f004139717a973 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Tue, 12 Nov 2019 12:48:18 -0500
Subject: [PATCH] unblinded tokens, remember?

---
 src/_zkapauthorizer/tests/test_client_resource.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/_zkapauthorizer/tests/test_client_resource.py b/src/_zkapauthorizer/tests/test_client_resource.py
index 46d2f57..410d78c 100644
--- a/src/_zkapauthorizer/tests/test_client_resource.py
+++ b/src/_zkapauthorizer/tests/test_client_resource.py
@@ -230,21 +230,21 @@ class ResourceTests(TestCase):
         )
 
 
-class BlindedTokenTests(TestCase):
+class UnblindedTokenTests(TestCase):
     """
-    Tests relating to ``/blinded-token`` as implemented by the
+    Tests relating to ``/unblinded-token`` as implemented by the
     ``_zkapauthorizer.resource`` module.
     """
     def setUp(self):
-        super(BlindedTokenTests, self).setUp()
+        super(UnblindedTokenTests, self).setUp()
         self.useFixture(CaptureTwistedLogs())
 
 
     @given(tahoe_configs(), vouchers(), integers(min_value=0, max_value=100))
     def test_get(self, get_config, voucher, num_tokens):
         """
-        When the blinded token collection receives a **GET**, the response is the
-        total number of blinded tokens in the system and the blinded tokens
+        When the unblinded token collection receives a **GET**, the response is the
+        total number of unblinded tokens in the system and the unblinded tokens
         themselves.
         """
         tempdir = self.useFixture(TempDir())
-- 
GitLab