| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Codecov ReportAll modified and coverable lines are covered by tests ✅ Additional details and impacted files @@ Coverage Diff @@
## main #214 +/- ##
=======================================
Coverage 86.56% 86.56%
=======================================
Files 27 27
Lines 722 722
Branches 65 65
=======================================
Hits 625 625
Misses 76 76
Partials 21 21 ☔ View full report in Codecov by Sentry. |
Sorry, something went wrong.
|
Thanks for the fix. Would you mind adding a test demonstrating what behavior this change fixes (the existing tests seem to pass fine without the change in db_name)? |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
testing always return "ORA-12514: TNS:listener does not currently know of service requested in connect
descriptor"
it is because the service is names "XE".
see this command:
the service name is "XE", not "xe".
so if you want to connect using (in testcontainers/core/generic.py)
line 48
it means that you want to connect using a service name, so get_connection_url must return "XE" as service_name
if it were :
then you could use "xe" (the db_name). but it is not the case