Skip to content

Commit

Permalink
removed extra import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
adriencanterot committed Aug 25, 2016
1 parent ecc4bc9 commit a703f07
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Tests/FluentSQLite/JoinTests.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import XCTest
@testable import FluentSQLite
import Fluent
import Foundation

class JoinTests: XCTestCase {
static let allTests = [
Expand Down Expand Up @@ -45,7 +44,7 @@ class JoinTests: XCTestCase {

let compounds = try hydrogen.compounds().all()
XCTAssertEqual(compounds.count, 2)
XCTAssertEqual(compounds.first?.id?.int, water.id?.int)
XCTAssertEqual(compounds.first?.name.string, water.name.string)
XCTAssertEqual(compounds.last?.id?.int, sugar.id?.int)
}
}

0 comments on commit a703f07

Please sign in to comment.