GithubHelp home page GithubHelp logo

Comments (5)

note35 avatar note35 commented on June 18, 2024

This is python's build-in type feature, not bug.

In Python, (x) means x, but (x,) means a tuple type contains value x.

For checking one argument, you can write in this way.

assert spyB.args == [(1,)]

Here is some answer from StackOverflow

from sinon.

jonathan-benn avatar jonathan-benn commented on June 18, 2024

Hi Kir,

Woah, my mind is blown about the (1,) tuple. However, there is still the problem that calls without parameters are not adding an empty tuple to the args_list. I'll update the issue description.

from sinon.

note35 avatar note35 commented on June 18, 2024

Thanks,

Here is the root cause - Link

if args: and if kwargs: will bypass empty tuple, dictionary.

from sinon.

jonathan-benn avatar jonathan-benn commented on June 18, 2024

I tried to submit some code but I got an error. Do I have submission authorization rights?

from sinon.

note35 avatar note35 commented on June 18, 2024

You can't direct push your branch into this repository.

A good practice for github project need to use fork + pull request.

  1. click fork from this repo. Github UI: note35/sinon -> jonathan-benn/sinon
  2. clone your fork repo to your workspace. git clone [email protected]:jonathan-benn/sinon.git
  3. create your issue fix branch in your workspace. git checkout -b issue-5
    ... (modify code and git add, commit) ...
  4. push the issue fix branch to your fork repo. git push -u origin issue-5
  5. send PR from that fix branch to dev. Github UI: jonathan-benn/sinon:issue-5 -> note35/sinon:dev

(and in the future, you will have your own fork repo. Every time you made new changes, you will need to sync from master first, then create issue fix branch and send PR.)

Here is a good reference from DigitOcean.

from sinon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.