Skip to content

Commit

Permalink
Correct paths
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed Oct 29, 2020
1 parent aa64f9c commit 704bffb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 2 additions & 1 deletion test/transfers-find-edges.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import web3 from './utils/web3';
import { findEdgesInGraphData } from '~/services/transfer';

import { findEdgesInGraphData } from '~/services/edgesGraph';

const SAFE_A = '0xA';
const SAFE_B = '0xB';
Expand Down
8 changes: 3 additions & 5 deletions test/transfers-find-steps.test.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import httpStatus from 'http-status';
import request from 'supertest';

import {
getTrustNetworkEdges,
storeEdges,
writeToFile,
} from '~/services/transfer';
import { mockGraphSafes } from './utils/mocks';
import { randomChecksumAddress } from './utils/common';

import app from '~';
import { getTrustNetworkEdges } from '~/services/edgesGraph';
import { storeEdges } from '~/services/edgesDatabase';
import { writeToFile } from '~/services/edgesFile';

describe('POST /transfers - Find transfer steps', () => {
beforeAll(async () => {
Expand Down

0 comments on commit 704bffb

Please sign in to comment.