Skip to content

Commit

Permalink
Fixed typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jjatie committed Sep 17, 2018
1 parent 30595e4 commit 89bb04b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "facebook/ios-snapshot-test-case" "ed4e6a6e81bfb69a5223156e6c3d389a416cf6e3"
github "facebook/ios-snapshot-test-case" "3efc829601128f7d9306e8e58db04d32594b62ce"
2 changes: 1 addition & 1 deletion Tests/Charts/BarChartTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class BarChartTests: FBSnapshotTestCase
99, 14, 84, 48, 40, 71, 106, 41, 45, 61]

let entries = zip(values.indices, values).map {
BarChartDataEntry(x: Double($0.1), y: $0.2, icon: UIImage(named: "icon", in: Bundle(for: self.classForCoder), compatibleWith: nil))
BarChartDataEntry(x: Double($0.0), y: $0.1, icon: UIImage(named: "icon", in: Bundle(for: self.classForCoder), compatibleWith: nil))
}

dataSet = BarChartDataSet(values: entries, label: "Bar chart unit test data")
Expand Down

0 comments on commit 89bb04b

Please sign in to comment.