Some typo in tests
See original GitHub issueHi this test actually return 3 but expected to be 2 which is wrong
Deno.test("adds the element", async () => {
const key = newKey();
const value1 = randomID();
const value2 = randomID();
await new LPushCommand([key, value1]).exec(client);
const res = await new LInsertCommand([key, "before", value1, value2]).exec(
client,
);
assertEquals(res, 2);
});
Issue Analytics
- State:
- Created a year ago
- Comments:15
Top Results From Across the Web
Why Typos Should be High-Priority Bugs - Applause
Brand reputation matters more than ever, so a simple misspelling can ... Unsurprisingly, I found a few bugs; that's why we test after...
Read more >Is checking web content for typos and spelling mistakes part of ...
While testing, you see that one of the existing information pages of the website contains some spelling mistake.
Read more >Typo in Writing Sample - 7Sage Forum
Hey everyone, So I just wrote my writing sample (my test is tomorrow) and everything went really well, I had strong arguments etc....
Read more >Typo (Typographical Error) | What is One Example of a Typo?
In some cases, what spell check classifies as typos are written on purpose and will not be corrected, but others can be accidental...
Read more >CITY SCHOOL EXAMS FAIL THE 'TYPO' TEST - New York Post
Some 90 different exams were created for the empowerment schools – though some questions were the same on all the tests. Each of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@chronark I have one question about
spop
command why theTResult
type parameter is string? ifcount
defined the result will be list of stringaccording to Redis documentation for
spop
Removes and returns one or more random members from the set value store at key.but in the test said return the first element