Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Float types are not supported #13

Closed
igor-plotnikov opened this issue Nov 23, 2021 · 5 comments · Fixed by #48
Closed

Float types are not supported #13

igor-plotnikov opened this issue Nov 23, 2021 · 5 comments · Fixed by #48
Assignees
Labels
enhancement New feature or request

Comments

@igor-plotnikov
Copy link

Float types are not supported, comparing JSON with a float type throws an error

@igor-plotnikov
Copy link
Author

igor-plotnikov commented Nov 23, 2021

Add a case for floats to walker.go:

	if modified.Bool() != current.Bool() {
		w.replace(pointer, modified.Bool(), current.Bool())
	}
case reflect.Float64, reflect.Float32:
	if modified.Float() != current.Float() {
		w.replace(pointer, modified.Float(), current.Float())
	}
case reflect.Invalid:
	// undefined interfaces are ignored for now
	return nil

and to patch_test.go:

Uint32  uint32  `json:"uint32"`
Uint64  uint64  `json:"uint64"`
UintPtr uintptr `json:"ptr" faker:"-"`
Float32   float32   `json:"float32"`
Float64   float64   `json:"float64"`

}

It works for me.

@snorwin snorwin self-assigned this Nov 23, 2021
@snorwin snorwin added the enhancement New feature or request label Nov 23, 2021
@snorwin
Copy link
Owner

snorwin commented Nov 23, 2021

Hi @igor-plotnikov,
Thank you for submitting an issue, feel free to create a pull request with the suggested changes.

Cheers,
Norwin

@igor-plotnikov
Copy link
Author

igor-plotnikov commented Nov 25, 2021 via email

@snorwin
Copy link
Owner

snorwin commented Nov 25, 2021

You need to create a fork first (https://docs.github.com/en/get-started/quickstart/fork-a-repo). On you personal fork you then can create branches and PR to the main branch of this repo here.

@johanneswuerbach
Copy link
Contributor

@snorwin would you have time to look into any of the provided PRs. That would be amazing 🤩

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
enhancement New feature or request
Projects
None yet
3 participants