-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
feat: Make possible to test and log dynamic datasources #406
Conversation
Signed-off-by: Maksim Dimitrov <[email protected]>
Signed-off-by: Maksim Dimitrov <[email protected]>
Signed-off-by: Maksim Dimitrov <[email protected]>
Signed-off-by: Maksim Dimitrov <[email protected]>
Signed-off-by: Maksim Dimitrov <[email protected]>
src/context/mod.rs
Outdated
.unwrap_or_else(|| panic!("No template with name '{}' found.", template_name)) | ||
.len() as u32; | ||
|
||
if actual_count != expected_count_ptr { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this statement will always resolve as false
because you use the pointer of expected_count
instead of its value
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, the _ptr is unneeded, expected_count_ptr it the actual value
Signed-off-by: Maksim Dimitrov <[email protected]>
No description provided.