We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not sure if I'm not understanding it correctly but it seems like there is a bug in https://github.com/pedestal/pedestal-app/blob/master/app/src/io/pedestal/app/diff.clj#L42
I run
(model-diff-inform {:a 1} {:a 1 :b 2}) ;;[[[:b] :added {:a 1} {:a 1, :b 2}]] (model-diff-inform {:a 1 :b 2} {:a 1}) ;;[]
I would expect that (model-diff-inform {:a 1 :b 2} {:a 1}) would return something like [[[:b] :removed {:a 1, :b 2} {:a 1}]]
(model-diff-inform {:a 1 :b 2} {:a 1})
[[[:b] :removed {:a 1, :b 2} {:a 1}]]
Is this expected behaviour?
The text was updated successfully, but these errors were encountered:
That does seem odd. If you investigate the generative tests and things do indeed seem off then I would accept a bug fix.
Sorry, something went wrong.
You expect correctly. If that is what is happening then it is a bug. I am surprised that we don't currently have a test for this very basic case.
On Saturday, February 15, 2014, Daniel Compton [email protected] wrote:
I'm not sure if I'm not understanding it correctly but it seems like there is a bug in https://github.com/pedestal/pedestal-app/blob/master/app/src/io/pedestal/app/diff.clj#L42 I run (model-diff-inform {:a 1} {:a 1 :b 2}) ;;[[[:b] :added {:a 1} {:a 1, :b 2}]](model-diff-inform {:a 1 :b 2} {:a 1}) ;;[] I would expect that (model-diff-inform {:a 1 :b 2} {:a 1}) would return something like ;;[[[:b] :removed {:a 1, :b 2} {:a 1}]] Is this expected behaviour? Reply to this email directly or view it on GitHubhttps://github.com//issues/18 .
(model-diff-inform {:a 1} {:a 1 :b 2}) ;;[[[:b] :added {:a 1} {:a 1, :b 2}]](model-diff-inform {:a 1 :b 2} {:a 1}) ;;[]
I would expect that (model-diff-inform {:a 1 :b 2} {:a 1}) would return something like ;;[[[:b] :removed {:a 1, :b 2} {:a 1}]]
Reply to this email directly or view it on GitHubhttps://github.com//issues/18 .
No branches or pull requests
I'm not sure if I'm not understanding it correctly but it seems like there is a bug in https://github.com/pedestal/pedestal-app/blob/master/app/src/io/pedestal/app/diff.clj#L42
I run
I would expect that
(model-diff-inform {:a 1 :b 2} {:a 1})
would return something like[[[:b] :removed {:a 1, :b 2} {:a 1}]]
Is this expected behaviour?
The text was updated successfully, but these errors were encountered: