Skip to content

Commit 0c3bafe

Browse files
author
Umed Khudoiberdiev
committed
fixed tests
1 parent 23f79c0 commit 0c3bafe

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

gulpfile.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export class Gulpfile {
3838
.pipe(shell(["tsc"]));
3939
}
4040

41+
// -------------------------------------------------------------------------
42+
// Packaging and Publishing tasks
43+
// -------------------------------------------------------------------------
44+
4145
/**
4246
* Publishes a package to npm from ./build/package directory.
4347
*/

test/functional/basic-functionality.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ describe("basic functionality", () => {
849849
photo: {
850850
id: 1,
851851
name: "Me",
852-
uploadDate: fromPlainUser.photo.uploadDate
852+
uploadDate: user.photo.uploadDate
853853
}
854854
});
855855

@@ -867,7 +867,7 @@ describe("basic functionality", () => {
867867
id: 1,
868868
name: "Me",
869869
metadata: "taken by Camera",
870-
uploadDate: fromPlainUser.photo.uploadDate
870+
uploadDate: user.photo.uploadDate
871871
}
872872
});
873873
});

test/functional/specify-maps.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ describe("specifying target maps", () => {
849849
photo: {
850850
id: 1,
851851
name: "Me",
852-
uploadDate: fromPlainUser.photo.uploadDate
852+
uploadDate: user.photo.uploadDate
853853
}
854854
});
855855

@@ -867,7 +867,7 @@ describe("specifying target maps", () => {
867867
id: 1,
868868
name: "Me",
869869
metadata: "taken by Camera",
870-
uploadDate: fromPlainUser.photo.uploadDate
870+
uploadDate: user.photo.uploadDate
871871
}
872872
});
873873
});

0 commit comments

Comments
 (0)