Skip to content

Commit

Permalink
Change deprecated import syntax in tests
Browse files Browse the repository at this point in the history
The `flask.ext` syntax has been deprecated in favour of the `flask_`
syntax

pallets/flask#1135
  • Loading branch information
Richard Mathie authored and thegeorgeous committed Mar 4, 2017
1 parent 3517596 commit a348ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cqlalchemy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import uuid
from flask import Flask
from flask.ext.cqlalchemy import CQLAlchemy
from flask_cqlalchemy import CQLAlchemy
from cassandra.cqlengine.management import drop_keyspace, create_keyspace_simple
from cassandra.cqlengine import models

Expand Down

0 comments on commit a348ff0

Please sign in to comment.