Skip to content

Commit

Permalink
Fix tooltip wrapping (#461)
Browse files Browse the repository at this point in the history
* Fix tooltip wrapping

Looks like the metadata table wasn't using the same class definition

* Attempting to zero in on test bug

* Fix table name

* Check for single user
  • Loading branch information
mbianco-stripe authored Jun 8, 2022
1 parent 02ac0a8 commit 62b2e48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
width: 1px;
}

.stripe-table_metadata.slds-table td,
.stripe-table_mapping.slds-table td {
white-space: normal;
vertical-align: top;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test_order_poller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

require_relative '../test_helper'

class Critic::OrderPollerTest < Critic::UnitTest
class Critic::OrderPollerTest < Critic::FunctionalTest
before do
@user = make_user
inline_job_processing!
Expand Down
2 changes: 2 additions & 0 deletions test/support/common_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ def normal_job_processing!
end

def common_setup
assert_equal(0, StripeForce::User.count)

# https://github.com/resque/resque-scheduler/pull/602
redis.redis.flushdb

Expand Down

0 comments on commit 62b2e48

Please sign in to comment.