amo13

Results 117 comments of amo13

Amazing! Glad to read that, because I merged the pull requests and made the build all totally blindly, since I have no current device to actually test it with. Thank...

You might also want to try a [newer build](https://github.com/amo13/Heimdall/releases/tag/v1.4.2) from a fork with a few fixes. It may or may not help...

This seems pretty odd to me. I noticed that my ruby program runs perfectly fine with openssl doing its thing, no certificate problem at all. It also works just fine...

Providing the sudo password in the dialog is preferred rather than running the whole application with sudo. This way, if the application has a bug, it will not misbehave with...

Thanks for the info. Unfortunately, I will not be able to take a closer look at this in the next weeks because I will soon have an important final exam...

Awesome! Let's keep this issue open as a reminder for me to add a notice for Samsung device owners about this. I will also need to update the instructions with...

Unfortunately, both of your workaround suggestions make the issue worse for me: * enqueuing jobs in a `ActiveSupport::TestCase` fails * and in my `ActionDispatch::IntegrationTest` I get the following error: ```...

One of the tests that trigger this error is this one: ```ruby class AccountControllerTest < ActionDispatch::IntegrationTest include Devise::Test::IntegrationHelpers def setup (ActiveJob::Base.descendants + [ActiveJob::Base]).each(&:disable_test_adapter) @new_user = { email: "[email protected]", subdomain: "testuser",...

Yes, I wrapped everything in a begin-rescue-end and asked for the backtrace on the raised exception. And here it is: ``` /home/amo/.rvm/gems/ruby-3.2.2@rails7/gems/activejob-7.0.5/lib/active_job/test_helper.rb:603:in `perform_enqueued_jobs' /home/amo/.rvm/gems/ruby-3.2.2@rails7/gems/actionmailer-7.0.5/lib/action_mailer/test_helper.rb:37:in `assert_emails' /home/amo/code/rails/some-project/test/controllers/user_controllers_test.rb:131:in `block in ' ###...

Thank you so much. I am still very new to rails. Can you please clarify for me what I need to do to make my tests run? My understanding of...