Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Commit 936afcf

Browse files
committed
Merge pull request #150 from antonzherdev/fix-package-name
Fix package name for the test and removing unused imports
2 parents cf705f8 + f39a2da commit 936afcf

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

postgresql-async/src/test/scala/com/github/mauricio/async/db/postgresql/PostgreSQLConnectionSpec.scala

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,22 @@
1414
* under the License.
1515
*/
1616

17-
package com.github.mauricio.postgresql
17+
package com.github.mauricio.async.db.postgresql
1818

1919
import java.nio.ByteBuffer
2020

21-
import com.github.mauricio.async.db.column.{TimestampEncoderDecoder, TimeEncoderDecoder, DateEncoderDecoder}
21+
import com.github.mauricio.async.db.column.{DateEncoderDecoder, TimeEncoderDecoder, TimestampEncoderDecoder}
2222
import com.github.mauricio.async.db.exceptions.UnsupportedAuthenticationMethodException
23-
import com.github.mauricio.async.db.postgresql.exceptions.{QueryMustNotBeNullOrEmptyException, GenericDatabaseException}
23+
import com.github.mauricio.async.db.postgresql.exceptions.{GenericDatabaseException, QueryMustNotBeNullOrEmptyException}
2424
import com.github.mauricio.async.db.postgresql.messages.backend.InformationMessage
25-
import com.github.mauricio.async.db.postgresql.{PostgreSQLConnection, DatabaseTestHelper}
2625
import com.github.mauricio.async.db.util.Log
27-
import com.github.mauricio.async.db.{Configuration, QueryResult, Connection}
26+
import com.github.mauricio.async.db.{Configuration, Connection, QueryResult}
2827
import io.netty.buffer.Unpooled
29-
import concurrent.{Future, Await}
28+
import org.joda.time.LocalDateTime
3029
import org.specs2.mutable.Specification
31-
import scala.concurrent.ExecutionContext.Implicits.global
30+
3231
import scala.concurrent.duration._
33-
import org.joda.time.LocalDateTime
32+
import scala.concurrent.{Await, Future}
3433

3534
object PostgreSQLConnectionSpec {
3635
val log = Log.get[PostgreSQLConnectionSpec]

0 commit comments

Comments
 (0)