-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
π©βπ¬ [Investment Day] Remove unused code #648
Conversation
@@ -35,8 +35,6 @@ final class CreatePasswordViewController: UIViewController, MessageBannerViewCon | |||
|> \.rightBarButtonItem .~ UIBarButtonItem(customView: self.saveButtonView) | |||
|
|||
if let childView = self.createPasswordTableViewController.tableView { | |||
childView.translatesAutoresizingMaskIntoConstraints = false |
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.
This is done internally inside of childView.constrainEdges(to: self.view)
@testable import Kickstarter_Framework | ||
import XCTest | ||
|
||
final class CreatePasswordViewControllerTests: XCTestCase { |
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.
We should probably test this just to be sure controller containment doesn't break in the future.
64416e9
to
edbb161
Compare
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.
Seems legit!
π² What
Removes unused files.
π€ Why
During my work on #645 I've noticed that there are couple files that are unused in our project so I've decided to remove these.
β Acceptance criteria