From 7e649118604d181c330ce0e13caa3401cabfc9a0 Mon Sep 17 00:00:00 2001 From: jNullj <15849761+jNullj@users.noreply.github.com> Date: Sun, 20 Oct 2024 00:35:39 +0300 Subject: [PATCH] fixed typo --- services/crates/crates-user-downloads.tester.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/crates/crates-user-downloads.tester.js b/services/crates/crates-user-downloads.tester.js index 1f507da04520e..d544a56fe35ab 100644 --- a/services/crates/crates-user-downloads.tester.js +++ b/services/crates/crates-user-downloads.tester.js @@ -6,7 +6,7 @@ t.create('total user downloads') .get('/udt/3027.json') .expectBadge({ label: 'downloads', message: isMetric }) -// non-existent user returns 0 downloads with 200 OK rather then 404. +// non-existent user returns 0 downloads with 200 OK status code rather than 404. t.create('total user downloads (user not found)') .get('/udt/2147483647.json') // 2147483647 is the maximum valid user id as API uses i32 .expectBadge({ label: 'downloads', message: '0' })