Skip to content

Commit

Permalink
Merge pull request mauricio#150 from antonzherdev/fix-package-name
Browse files Browse the repository at this point in the history
Fix package name for the test and removing unused imports
  • Loading branch information
mauricio committed Aug 10, 2015
2 parents cf705f8 + f39a2da commit 936afcf
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,22 @@
* under the License.
*/

package com.github.mauricio.postgresql
package com.github.mauricio.async.db.postgresql

import java.nio.ByteBuffer

import com.github.mauricio.async.db.column.{TimestampEncoderDecoder, TimeEncoderDecoder, DateEncoderDecoder}
import com.github.mauricio.async.db.column.{DateEncoderDecoder, TimeEncoderDecoder, TimestampEncoderDecoder}
import com.github.mauricio.async.db.exceptions.UnsupportedAuthenticationMethodException
import com.github.mauricio.async.db.postgresql.exceptions.{QueryMustNotBeNullOrEmptyException, GenericDatabaseException}
import com.github.mauricio.async.db.postgresql.exceptions.{GenericDatabaseException, QueryMustNotBeNullOrEmptyException}
import com.github.mauricio.async.db.postgresql.messages.backend.InformationMessage
import com.github.mauricio.async.db.postgresql.{PostgreSQLConnection, DatabaseTestHelper}
import com.github.mauricio.async.db.util.Log
import com.github.mauricio.async.db.{Configuration, QueryResult, Connection}
import com.github.mauricio.async.db.{Configuration, Connection, QueryResult}
import io.netty.buffer.Unpooled
import concurrent.{Future, Await}
import org.joda.time.LocalDateTime
import org.specs2.mutable.Specification
import scala.concurrent.ExecutionContext.Implicits.global

import scala.concurrent.duration._
import org.joda.time.LocalDateTime
import scala.concurrent.{Await, Future}

object PostgreSQLConnectionSpec {
val log = Log.get[PostgreSQLConnectionSpec]
Expand Down

0 comments on commit 936afcf

Please sign in to comment.